Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rajasegar/express-pug-tailwind-boilerplate
Express.js boilerplate using Pug and Tailwind CSS
https://github.com/rajasegar/express-pug-tailwind-boilerplate
boilerplate expressjs nodejs pug pug-template-engine tailwindcss
Last synced: about 2 months ago
JSON representation
Express.js boilerplate using Pug and Tailwind CSS
- Host: GitHub
- URL: https://github.com/rajasegar/express-pug-tailwind-boilerplate
- Owner: rajasegar
- Created: 2021-05-14T05:00:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-16T05:04:34.000Z (over 3 years ago)
- Last Synced: 2024-10-29T02:22:30.671Z (3 months ago)
- Topics: boilerplate, expressjs, nodejs, pug, pug-template-engine, tailwindcss
- Language: JavaScript
- Homepage:
- Size: 648 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# express-pug-tailwind-boilerplate
An [Express.js](https://expressjs.com) application boilerplate using [Pug](https://pugjs.org) as the template engine and using [Tailwind](https://tailwindcss.com) for styles.
## Using the boilerplate
Clone the repo, install dependencies and start the server.
```
git clone https://github.com/rajasegar/express-pug-tailwind-boilerplate
cd
npm install
npm start
```## Development mode
Tailwind CSS will not be purged so that you can experiment with the different styles during development.```
npm run dev
```## Production
Express will start in production mode and the Tailwind CSS will be purged and minified.
```
npm start
```