https://github.com/williscool/node-cli-scaffold
bare minimum needed to standup a clean current es syntax node cli app
https://github.com/williscool/node-cli-scaffold
Last synced: about 2 months ago
JSON representation
bare minimum needed to standup a clean current es syntax node cli app
- Host: GitHub
- URL: https://github.com/williscool/node-cli-scaffold
- Owner: williscool
- Created: 2019-05-23T06:47:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T22:27:06.000Z (over 2 years ago)
- Last Synced: 2023-03-11T21:07:19.512Z (about 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 1.06 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-cli-scaffold
bare minimum need to standup a clean current es syntax node cli app# Creation Command Line Incantations
```
# make it work
yarn add --dev husky @babel/cli @babel/core @babel/node @babel/preset-env nodemon# make it readable and pretty
yarn add --dev eslint babel-eslint eslint-config-airbnb-base eslint-plugin-import eslint-config-prettier prettier prettier-eslint# so you can test import syntax and some functionalty
yarn add commander
```# Usage
```
yarn start
```# inspirations
https://hackernoon.com/using-babel-7-with-node-7e401bc28b04