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

https://github.com/gilbox/node-simple

Quickly prototype JS with mocha+chai specs.
https://github.com/gilbox/node-simple

Last synced: over 1 year ago
JSON representation

Quickly prototype JS with mocha+chai specs.

Awesome Lists containing this project

README

          

# node-simple

## quickstart

git clone https://github.com/gilbox/node-simple.git my-node-simple
cd my-node-simple
npm i
NAME=myExample npm run file
npm test

## Create a file

NAME=myExample npm run file

Creates a `src/myExample.js` file and `test/myExample.test.js` file.
The JS file will export default function `myExample`.

## Run tests in watch mode

npm test