Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abernier/nq
jQuery (also) for node
https://github.com/abernier/nq
Last synced: about 1 month ago
JSON representation
jQuery (also) for node
- Host: GitHub
- URL: https://github.com/abernier/nq
- Owner: abernier
- Created: 2012-05-08T18:55:33.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-11-04T14:19:23.000Z (about 12 years ago)
- Last Synced: 2024-10-16T23:31:05.576Z (2 months ago)
- Language: CoffeeScript
- Homepage: https://npmjs.org/package/nq
- Size: 207 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install
```bash
npm install nq
```_hosted on [NPM registry](http://search.npmjs.org/#/nq)_
# Usage
## Client side
```html
```
## Server-side
```coffeescript
$ = require 'nq'
``````coffeescript
$1 = require('nq').create(window1)
$2 = require('nq').create(window2)
```# Dev
Requirements:
* [GNU make](http://www.gnu.org/software/make/)
* [GNU m4](http://www.gnu.org/software/m4/)## Build
```bash
npm run _build
```## Publish
* Be sure to have `npm adduser` you
* Bump `package.json.version`Then:
```bash
npm publish
git tag -a vX.Y.Z -m 'Tagging X.Y.Z'
git push origin vX.Y.Z
```