Code Monkey home page Code Monkey logo

Comments (9)

sunny-g avatar sunny-g commented on August 18, 2024

I also edited the index.js file to before compiling to require 'create-hash/browser' instead of just 'create-hash' to no avail.

from bip39.

dcousens avatar dcousens commented on August 18, 2024

I haven't had this issue, are you browserifying in such a way that Buffer is ignored?

from bip39.

sunny-g avatar sunny-g commented on August 18, 2024

I'm browserifying exactly as npm rum compile does it as well as trying browserify index.js -o bip39.js so that it can be required appropriately.

One fix I found was to add this line before requiring bip39, but then I get an assert is not defined error:

global.Buffer = global.Buffer || require('buffer').Buffer;

which suggests to me that I'm going have to do this for every Node.js module I want to use (assert, crypto, stream, etc). I'm currently looking for a more reasonable alternative to this.

from bip39.

dcousens avatar dcousens commented on August 18, 2024

Check the resultant file, if the "Buffer" module doesn't exist in there, something is terribly wrong.
What browserify/node/npm version?

from bip39.

sunny-g avatar sunny-g commented on August 18, 2024

node: 0.12.7
npm: 2.11.3
browserify: 12.0.1

If you run browserify index.js -o bip39.js with these settings, at line 365 begins the IIFE defining the Buffer class. assert's definition is the first thing code after the big one-liner from browserify, crypto begins on line 6072, etc.

from bip39.

dcousens avatar dcousens commented on August 18, 2024

How are you then using bip39.js?

from bip39.

sunny-g avatar sunny-g commented on August 18, 2024

So as it turns out there are three ways I can use it (the npm run compiled version only), of which only the last method works:

  1. bip39.js in the same folder as index.js, and the code I use islet bip39 = require('bip39/bip39'); - get the Buffer is not defined error.
  2. bip39.js in the same folder as index.js, and the code is let bip39 = require('../../node_modules/bip39/bip39.js');- same Buffer is not defined error.
  3. bip39.js inside my src/, and the code is let bip39 = require('./bip39.js'); - and this works!

I'm almost certain this has something to do with React Packager and not your library, so I really appreciate your help!

from bip39.

dcousens avatar dcousens commented on August 18, 2024
require('bip39')

Is all you should need.
If that doesn't work, then something is wrong with you are using react native.

from bip39.

dcousens avatar dcousens commented on August 18, 2024

@sunny-g I assume this all worked out in the end?

from bip39.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.