https://github.com/dentednerd/nodeitup
A Node app to automatically create a new project with Husky and ESLint, and your choice of Mocha/Chai or Jest.
https://github.com/dentednerd/nodeitup
chai eslint husky mocha node
Last synced: 3 months ago
JSON representation
A Node app to automatically create a new project with Husky and ESLint, and your choice of Mocha/Chai or Jest.
- Host: GitHub
- URL: https://github.com/dentednerd/nodeitup
- Owner: dentednerd
- Created: 2017-06-07T16:47:12.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2022-03-17T11:50:04.000Z (over 4 years ago)
- Last Synced: 2025-02-07T00:31:59.045Z (over 1 year ago)
- Topics: chai, eslint, husky, mocha, node
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NodeItUp
A [Node](https://nodejs.org/en/) app to automatically create a new Node project.
## Features
- initialises [Git](https://git-scm.com/) and creates an initial commit
- uses [Husky](https://typicode.github.io/husky/#/) for pre-commit hooks
- uses [ESLint](https://eslint.org/) for linting
## Options
- your choice of testing package: either [Mocha](https://mochajs.org/) with [Chai](https://www.chaijs.com/), or [Jest](https://jestjs.io/)
- optionally creates a [Github](https://github.com/) repo and pushes the initial commit (requires [gh](https://github.com/cli/cli))
- optionally opens the project in [Visual Studio Code](https://code.visualstudio.com/) upon completion (requires Visual Studio Code)
## Installation
```sh
$ git clone https://github.com/dentednerd/nodeitup.git
$ cd ./nodeitup
$ npm install
$ sudo npm link
```
## Usage
```sh
$ nodeitup
```