├── .gitignore ├── LICENSE ├── models └── File.js ├── package.json ├── server.js └── views ├── index.ejs └── password.ejs /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | uploads -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/file-sharing-node-js/HEAD/LICENSE -------------------------------------------------------------------------------- /models/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/file-sharing-node-js/HEAD/models/File.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/file-sharing-node-js/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/file-sharing-node-js/HEAD/server.js -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/file-sharing-node-js/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/password.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevSimplified/file-sharing-node-js/HEAD/views/password.ejs --------------------------------------------------------------------------------