- Wireframes (sheet of paper, figma.com, ...)
- List of routes
- List of models
- Create a
node/seeds.js
- Code!
GET /
POST /add-link
GET /like-link/:linkId
GET /auth/signup
POST /auth/signup
GET /auth/login
POST /auth/login
GET /delete-link/:linkId
GET /profile
First, install the NPM package bootstrap
npm i bootstrap
Then you can write the following public/stylesheets/style.scss
$primary: #563d7c; // Override the default $primary color to purple
@import '../..//node_modules/bootstrap/scss/bootstrap.scss';
// I can write my own SCSS below
// ...