Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdulaz1z/nodejs-pug-starter
This project is a simple application skeleton for a NodeJs web app with PugJs templating. You can use it to quickly bootstrap your NodeJs webapp projects and dev environment for these projects.
https://github.com/abdulaz1z/nodejs-pug-starter
expressjs nodejs project pugjs starter
Last synced: 3 months ago
JSON representation
This project is a simple application skeleton for a NodeJs web app with PugJs templating. You can use it to quickly bootstrap your NodeJs webapp projects and dev environment for these projects.
- Host: GitHub
- URL: https://github.com/abdulaz1z/nodejs-pug-starter
- Owner: abdulaz1z
- Created: 2018-03-18T01:13:26.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-18T18:33:39.000Z (almost 7 years ago)
- Last Synced: 2024-10-18T01:38:56.130Z (3 months ago)
- Topics: expressjs, nodejs, project, pugjs, starter
- Language: HTML
- Homepage:
- Size: 2.92 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nodejs-pug-starter
This project is a simple application skeleton for a NodeJs web app with PugJs templating. You can use it to quickly bootstrap your NodeJs web app projects and dev environment for these projects.
## Getting Started
To get you started you can simply clone the `nodejs-pug-starter` repository and install the dependencies:
### Clone `nodejs-pug-starter`
Clone the `nodejs-pug-starter` repository using git:
```
git clone https://github.com/abdulaz1z/nodejs-pug-starter.git
cd nodejs-pug-starter
```If you just want to start a new project without the `nodejs-pug-starter` commit history then you can do:
```
git clone --depth=1 https://github.com/abdulaz1z/nodejs-pug-starter.git
```The `depth=1` tells git to only pull down one commit worth of historical data.
### Install Dependencies
```
npm install
```### Run the Application
We have preconfigured the project with a simple development web server. The simplest way to start
this server is:```
node server.js
```Now browse to the app at [`localhost:3000/.`](http://localhost:3000/)