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.
- Host: GitHub
- URL: https://github.com/gilbox/node-simple
- Owner: gilbox
- Created: 2018-04-30T03:38:30.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-09T23:10:30.000Z (about 8 years ago)
- Last Synced: 2025-01-29T11:30:42.463Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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