Gen3 Express
A gen3 tool to generate express app.
IMPORTANT
1.1.4 is released
- docs has been updated.
- commands have been updated.
- hot reloading servers are merged in one server.
- parallel server runner is now highly optimised, and efficient.
Acknowledgements
You need to know atleast basics of these technologies.
Installation
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.
1. node package extecutor
This method is highly recommended to generate an express app.
npx gen3-express my-app2. node package manager
Generation of an express app is not recommended through npm.
npm install -g gen3-expressgen3-express my-appTailwind CSS
To get tailwind css boilerplate, you can add -t or --tailwindcss switch or flag while generating a site.
npx gen3-express my-app --tailwindcssUsage
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
devkeyword.
Documentation
To install all dependencies goto the folder and execute npm install command.
cd my-app
npm installTo start a dev server to preview page use server keyword.
- The below command does also provide live reloading in frontend and
publicfiles.
npm run serverIf 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 devFile Tree
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.jsfor 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.ejsRoadmap
- Custom name in
package.jsonfile ✅ - Excellent terminal user interface ✅
- Post this project to npmjs website. ✅
- Add Tailwind CSS support. ✅
- Use a lightweight server for EJS live reloading. ✅
- Prompt
package.jsonfile's details from user. ⏩ - Custom local template feature ⏩
Authors
Contributing
Contributions are always welcome!