l@271: ~installation~ l@271: l@271: The easiest way to get osc-min is through [NPM](http://npmjs.org). l@271: After install npm, you can install osc-min in the current directory with l@271: l@271: ``` l@271: npm install osc-min l@271: ``` l@271: l@271: If you'd rather get osc-min through github (for example, if you're forking l@271: it), you still need npm to install dependencies, which you can do with l@271: l@271: ``` l@271: npm install --dev l@271: ``` l@271: l@271: Once you've got all the dependencies you should be able to run the unit l@271: tests with l@271: l@271: ``` l@271: npm test l@271: npm run-script coverage l@271: ``` l@271: l@271: ### For the browser l@271: If you want to use this library in a browser, you can build a browserified file (`build/osc-min.js`) with l@271: l@271: ``` l@271: npm install --dev l@271: npm run-script browserify l@271: ```