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

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

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