A gen3 tool to generate express app.
You need to know atleast basics of these technologies.
You can generate an express app using this tool in two approaches. Here I'm generating an app with name my-app
, you can name to it anything you like.
This method is highly recommended to generate an express app.
npx gen3-express my-app
Generation of an express app is not recommended through npm.
npm install -g gen3-express
gen3-express my-app
To get tailwind css boilerplate, you can add -t
or --tailwindcss
switch or flag while generating a site.
npx gen3-express my-app --tailwindcss
To add tailwindcss to your frontend page, use css/tailwind.css
into a link
tag.
<link href="css/tailwind.css" rel="stylesheet">
We have to run a tailwind
sever with the below command, because tailwindcss
regularly update css file according to your needs.
npm run tailwind
- You can run frontend, backend and tailwind servers parallelly using
dev
keyword.
To install all dependencies goto the folder and execute npm install
command.
cd my-app
npm install
To start a dev server to preview page use server
keyword.
- The below command does also provide live reloading in frontend and
public
files.
npm run server
If you want to run all servers together (especially tailwindcss) then you should to use the below command, this command provides multiple servers parallelly.
npm run dev
To know about the project structure read about files included in this code block.
- In case of tailwindcss, the boilerplate contains additional files like
tailwind.config.js
for tailwindcss configs.
.
├── app.js
├── package.json
├── public
│ ├── css
│ │ └── style.css
│ └── fonts
│ └── sans.woff
├── nodemon.json # configs for hot reloadings in frontend and backend.
├── utils
│ └── netface.js # contains functions to show available ipv4 addresses.
└── views
└── home.ejs
- Custom name in
package.json
file ✅ - Excellent terminal user interface ✅
- Post this project to npmjs website. ✅
- Add Tailwind CSS support. ✅
- Use a lightweight server for EJS live reloading. ✅
- Prompt
package.json
file's details from user. ⏩ - Custom local template feature ⏩
Contributions are always welcome!