Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```