Giter Club home page Giter Club logo

acquire.js's Introduction

acquire.js

Require application module. A build module encouragement tool as a step before your module becomes a full npm package

Node is great and having functional units of code in modules that can be pulled in via require() is really nice. However, during the time when your application code is being built, accessing your lovely little modules isn't very clean, ex: var mymodule = require('./somepath/mymodule'). More importantly there's the overhead in setting up the repo, npm package, etc; when, you really need to get a project out the door. What if you could build you applicaton and then come back and then put all those nifty nuggets of functionality into formal packages and easily switch to code to using the newly packaged versions?

Enter acquire.js

Install

npm install acquire.js --save

Usage

Put your modules in the app_modules folder, in the same folder as your node_modules. Ex:

app_modules/
  nifty.js
  other/
    index.js
  profound/
    index.js
    package.json
    node_modules/
node_modules/

Then require('acquire.js') and use it to get your application module.

var acquire = require('acquire.js');
var mynifty = acquire('nifty') // nifty.js or nifty/index.js or as defined in nifty/package.json
var myother = acquire('other')

Later when you've packaged up your functionality and published it via npm publish and npm install nifty --save to add the package to your applcation. You simple change the call to acquire('nifty') to require('nifty')

var acquire = require('acquire.js');
var mynifty = acquire('nifty') // nifty is now a formal package
var myother = acquire('other')

Optional path

If you prefer another path for your application modules other than app_modules you can set it via the second parameter. Once passed, the default will remain changed until you change it again.

Example with your modules in other_path_modules:

other_path_modules/
  nifty.js
  other/
    index.js
  profound/
    index.js
    package.json
    node_modules/
node_modules/
var acquire = require('acquire.js');
var mynifty = acquire('nifty', 'other_path_modules') // change the default path on first use
var myother = acquire('other')

Bonus

If you want to easily access data in your bower.json, component.json, config.json or package.json files, you can simple acquire and then use them.

var acquire = require('acquire.js');
var myPack  = acquire('package')
console.log(myPack.name, myPack.version) // nifty 0.1.4

License MIT

acquire.js's People

Contributors

angleman avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

servel333

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.