Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require on use #129

Merged
merged 5 commits into from
Mar 10, 2014
Merged

Require on use #129

merged 5 commits into from
Mar 10, 2014

Commits on Mar 10, 2014

  1. add caching feature for bitcore.X requires

    Normally when one loads the bitcore object, all classes are loaded into memory,
    even if they are not used. This comment updates this so that the classes are
    only required when they are actually used, preserving memory and making bitcore
    as small and light for each project. This code is only relevant for node, since
    the browser will have the ability to compile only the selected components.
    Also, the Key class does not yet work with this, but everything else does.
    Ryan X. Charles committed Mar 10, 2014
    Configuration menu
    Copy the full SHA
    8a41414 View commit details
    Browse the repository at this point in the history
  2. fix the loading for Key.js

    Now, like all other modules loaded in the bitcore object, Key is only required
    when it is actually used. All tests pass in node and the browser.
    Ryan X. Charles committed Mar 10, 2014
    Configuration menu
    Copy the full SHA
    5b67d91 View commit details
    Browse the repository at this point in the history
  3. remove unnecessary "buffer" from browserify.js

    Ryan X. Charles committed Mar 10, 2014
    Configuration menu
    Copy the full SHA
    82d9f44 View commit details
    Browse the repository at this point in the history
  4. remove comment

    Ryan X. Charles committed Mar 10, 2014
    Configuration menu
    Copy the full SHA
    acd42bf View commit details
    Browse the repository at this point in the history
  5. fix address example by using bitcore.Address

    Ryan X. Charles committed Mar 10, 2014
    Configuration menu
    Copy the full SHA
    8e430df View commit details
    Browse the repository at this point in the history