Keep you away from boring procedures for new JavaScript/TypeScript project
The following configurations of the common tools will be generated
- Yarn 2 (.yarn, .yarnrc.yml)
- ESLint (.eslintignore, .eslintrc)
- Prettier (.prettierrc)
You can choose which tool you want to set up
The following step which are executed:
- Generate/update configurations
- Create/update ignore files
- Add necessary dependencies
- Add scripts to
package.json
(optional)
You can run by these commands:
# npm
npx create-javascript-project
# yarn
yarn create javascript-project
# yarn 2
yarn dlx create-javascript-project
Technically, this tool is used for existing project. It must be run in a project directory with
package.json
file.