nodetsep
v0.1.2
Published
A CLI to quickly initialize Node.js projects with TypeScript, ts-node-dev, ESLint, and Prettier preconfigured.
Maintainers
Readme
nodetsep
A CLI to quickly initialize Node.js projects with TypeScript, ts-node-dev, ESLint, and Prettier preconfigured.
Usage
To create a new project, run the following command in your terminal. Replace <project-name> with the desired name for your new directory.
npx nodetsep <project-name>Or
pnpm dlx nodetsep <project-name>This will create a new folder with a complete setup, including:
- TypeScript configuration (
tsconfig.json) - ESLint and Prettier for code quality and formatting
- A basic
package.json - A starter
src/index.tsfile
Example
npx nodetsep my-awesome-projectAfter the command finishes, you can navigate into your new project:
cd my-awesome-project
pnpm installLocal Development
If you want to contribute to the development of nodetsep, follow these steps to set up the project locally.
Clone the repository:
git clone https://github.com/aDogdev/nodetsep-package.git cd nodetsep-packageInstall dependencies: This project uses
pnpmas the package manager.pnpm installRun in development mode: This command starts
nodemonto watch for changes in thesrcdirectory and re-run the script withts-node.pnpm run dev
