init!
parents
No related branches found
No related tags found
Showing
- .gitignore 5 additions, 0 deletions.gitignore
- README.MD 13 additions, 0 deletionsREADME.MD
- ascii.txt 10 additions, 0 deletionsascii.txt
- conf.json 5 additions, 0 deletionsconf.json
- db.sql 0 additions, 0 deletionsdb.sql
- db/db.js 20 additions, 0 deletionsdb/db.js
- index.js 63 additions, 0 deletionsindex.js
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 31 additions, 0 deletionspackage.json
- public/html/index.html 4 additions, 0 deletionspublic/html/index.html
- routes/index.js 9 additions, 0 deletionsroutes/index.js
- routes/redirect.js 28 additions, 0 deletionsroutes/redirect.js
- routes/shorten.js 39 additions, 0 deletionsroutes/shorten.js
.gitignore
0 → 100644
README.MD
0 → 100644
ascii.txt
0 → 100644
conf.json
0 → 100644
db.sql
0 → 100644
db/db.js
0 → 100644
index.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "shortnex", | ||
"version": "1.0.0", | ||
"description": "Shortnex | Easy URL shortener.", | ||
"main": "index.js", | ||
"dependencies": { | ||
"body-parser": "^1.18.2", | ||
"express": "^4.16.2", | ||
"morgan": "^1.9.0", | ||
"nedb": "^1.8.0", | ||
"path": "^0.12.7", | ||
"snekfetch": "^3.6.1" | ||
}, | ||
"devDependencies": {}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lordjbs/Shortenx.git" | ||
}, | ||
"keywords": [ | ||
"shortener" | ||
], | ||
"author": "lordjbs", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/lordjbs/Shortenx/issues" | ||
}, | ||
"homepage": "https://github.com/lordjbs/Shortenx#readme" | ||
} |
public/html/index.html
0 → 100644
routes/index.js
0 → 100644
routes/redirect.js
0 → 100644
routes/shorten.js
0 → 100644
Please register or sign in to comment