Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/napthees/up-routing-node.js-express-ejs
Website Pages Routing with Node.js, Express, Bootstrap and EJS
https://github.com/napthees/up-routing-node.js-express-ejs
bootstrap4 ejs-templates node-js routing
Last synced: 3 months ago
JSON representation
Website Pages Routing with Node.js, Express, Bootstrap and EJS
- Host: GitHub
- URL: https://github.com/napthees/up-routing-node.js-express-ejs
- Owner: napthees
- License: mit
- Created: 2018-09-29T07:41:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-19T12:05:02.000Z (4 months ago)
- Last Synced: 2024-10-01T18:08:27.158Z (3 months ago)
- Topics: bootstrap4, ejs-templates, node-js, routing
- Language: HTML
- Size: 365 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
* _Updated document on November 29, 2020_
[![Known Vulnerabilities](https://snyk.io/test/github/napthees/up-routing-node.js-express-ejs/badge.svg?targetFile=package.json)](https://snyk.io/test/github/napthees/up-routing-node.js-express-ejs?targetFile=package.json)
To solve this you need to tell JSHint your project is developed in ES6 by creating the .jshintrc file to the root project directory with the below config:
```
{
"esversion": 6
}
```# Description of the application "Up routing with node.js, express, bootstrap & ejs!"
Website Pages Routing with Node.js, Express, Bootstrap and EJS
## Dependencies
```
"bootstrap": "^4.4.1",
"ejs": "^3.0.1",
"express": "^4.17.1",
"jquery": "^3.4.1",
"popper.js": "^1.16.1"
```## Structure Project
```
-- /routes
-- index.js
-- /styles
-- /css
-- style.css
-- /images
-- favicon.ico
-- logo.png
-- /views
-- /include
-- footer.ejs
-- head.ejs
-- nav.ejs
-- scripts.ejs
-- about.ejs
-- contact.ejs
-- index.ejs
-- app.js
-- package.json
-- package-lock.json
```
## Install and StartIn command line:
```
> To install the packages
```
`npm install`
```
> To start the application that will be available from your browser at localhost:8080
```
`npm start`