Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joonhocho/underscore-node
Underscore for Node.js without unnecessary cross-browser checks
https://github.com/joonhocho/underscore-node
Last synced: about 2 months ago
JSON representation
Underscore for Node.js without unnecessary cross-browser checks
- Host: GitHub
- URL: https://github.com/joonhocho/underscore-node
- Owner: joonhocho
- License: mit
- Created: 2013-09-07T17:01:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-08T20:28:14.000Z (over 11 years ago)
- Last Synced: 2024-10-31T09:09:39.126Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 484 KB
- Stars: 7
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
What is Underscore for Node.js
==============================[Underscore.js for Node.js][1] without cross-browser checks.
This is a ported version of [Underscore.js][2] targeted for Node.js on V8 JavaScript Engine.
Its purpose is to have the exactly same APIs and functionalities but with better perfomance and smaller code size.
It is accomplished by eliminating unnecessary cross-browser compatibility efforts.
Its APIs can be found in [here][3], and it is [fully tested][4] against the same tests for original Underscore.
How To Use
==========To install via NPM package:
`npm install underscore-node`
Inside your Node.js project:
`var _ = require('underscore-node');`
Disclaimer
==========This version is targeted for Node.js on V8 JavaScript Engine only.
It is NOT to be used on browsers or any other JavaScript engines.
This means that there will be no efforts to support different JavaScript versions or behaviours.
[1]: https://github.com/joonho1101/underscore-node "Underscore for Node.js"
[2]: https://github.com/jashkenas/underscore "Underscore"
[3]: http://underscorejs.org/ "Underscore API"
[4]: https://travis-ci.org/joonho1101/underscore-node "Travis CI"