This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| @Name : Bootstrap Theme | |
| @author: NaveenDA | |
| @github: github.com/NaveenDA | |
| */ | |
| /*! | |
| * Bootstrap v3.3.7 (http://getbootstrap.com) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var app = express() | |
| app.set('trust proxy', 1) // trust first proxy | |
| app.use(session({ | |
| secret: 'keyboard cat', | |
| resave: false, | |
| saveUninitialized: true, | |
| cookie: { secure: true } | |
| })) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const express = require('express') | |
| const helmet = require('helmet') | |
| const app = express() | |
| app.use(helmet()) | |
| // ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Google", | |
| "url": "http:\/\/www.google.com" | |
| }, | |
| { | |
| "name": "Bing", | |
| "url": "http:\/\/www.bing.com" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /////////////////////////// complete list of bootstrap classes | |
| .affix | |
| .alert | |
| .alert-danger | |
| .alert-dismissible | |
| .alert-info | |
| .alert-link | |
| .alert-success | |
| .alert-warning | |
| .active |
NewerOlder