├── .gitignore ├── README.md ├── Screen-shot.png ├── env.example ├── index.js ├── middlewares └── auth.js ├── package.json └── public ├── 404-not-found.png ├── 404.css ├── 404.html ├── 404.png ├── app.js ├── image.png ├── index.html └── styles.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/README.md -------------------------------------------------------------------------------- /Screen-shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/Screen-shot.png -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- 1 | MONGODB_URI=localhost:27017 -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/index.js -------------------------------------------------------------------------------- /middlewares/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/middlewares/auth.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/package.json -------------------------------------------------------------------------------- /public/404-not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/public/404-not-found.png -------------------------------------------------------------------------------- /public/404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/public/404.css -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/public/404.html -------------------------------------------------------------------------------- /public/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/public/404.png -------------------------------------------------------------------------------- /public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/public/app.js -------------------------------------------------------------------------------- /public/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/public/image.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/public/index.html -------------------------------------------------------------------------------- /public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/persian-developers-hub/nodejs-url-shortener/HEAD/public/styles.css --------------------------------------------------------------------------------