UNPKG

@webloop/create-dev-project

Version:

This is a simple command line interface to install packages

76 lines (51 loc) 1.77 kB
# create-dev-project This is a simple CLI method to install reactjs and nextjs variation projects! ## Installation Process Install create-dev-project with npm Open your terminal and type the following command init ```bash npx @webloop/create-dev-project ``` After that you'll get options to select template for you project! ```bash ? Select template for your project! (Use arrow keys) ❯ react-js react-ts react-tailwind react-ts-tailwind next-js next-ts next-tailwind next-ts-tailwind ``` Select your template by UP and DOWN arrows. After selecting the template, enter your project name. ```bash ? Select template for your project! react ? Project name: test-react-project ``` If you get the following in your CLI, then the project is successfully created! ``` DONE: Your project created successfully! cd test-react-project npm install Happy Hacking! ``` Now just cd into your project folder and run npm install to install all the require dependencies. ``` cd test-react-project && npm i ``` NOTE: Make sure to rename your "name" field in your package.json file as you are downloading a template it doesn't change project name in the package.json file! ## v1.0.0 Contains following projects | Parameter | Description | | :--------------- | :--------------------------------------- | | `react-js` | **React with JavaScript** | | `react-tailwind` | **React with JavaScript + Tailwind CSS** | | `react-ts` | **React with TypeScript** | Versions of the dependencies | Dependencies | Version | | :-------- | :------------------------- | | `vite` | **v4.9.3** | | `tailwind-css` | **v3.3.2** | ## Contributor - [@webloop](https://www.npmjs.com/~webloop)