Initial Commit
Showing
.gitignore
0 → 100644
cert.key
0 → 100644
cert.pem
0 → 100644
index.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
| { | ||
| "name": "same-site", | ||
| "version": "1.0.0", | ||
| "description": "", | ||
| "main": "index.js", | ||
| "scripts": { | ||
| "same-site": "node index.js", | ||
| "cross-site": "node index.js --cross-site", | ||
| "create-cert": "openssl req -x509 -nodes -days 730 -newkey rsa:2048 -keyout cert.key -out cert.pem -config req.conf -extensions 'v3_req'" | ||
| }, | ||
| "author": "", | ||
| "license": "ISC", | ||
| "dependencies": { | ||
| "cookie-parser": "^1.4.5", | ||
| "cors": "^2.8.5", | ||
| "express": "^4.17.1", | ||
| "https": "^1.0.0", | ||
| "pug": "^3.0.0", | ||
| "yargs": "^15.4.0" | ||
| } | ||
| } |
public/check-cookies.js
0 → 100644
req.conf
0 → 100644
views/_menu.pug
0 → 100644
views/check-cookies.pug
0 → 100644
views/index.pug
0 → 100644
Please register or sign in to comment