├── .gitmodules ├── README.md ├── server.js ├── site ├── index.html ├── page2.html ├── script.js └── styles.css └── template-listing.js /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andygrn/Node.js-File-Server/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andygrn/Node.js-File-Server/HEAD/README.md -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andygrn/Node.js-File-Server/HEAD/server.js -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andygrn/Node.js-File-Server/HEAD/site/index.html -------------------------------------------------------------------------------- /site/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andygrn/Node.js-File-Server/HEAD/site/page2.html -------------------------------------------------------------------------------- /site/script.js: -------------------------------------------------------------------------------- 1 | 2 | function modalLol() { 3 | 4 | alert('lol!'); 5 | 6 | } -------------------------------------------------------------------------------- /site/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andygrn/Node.js-File-Server/HEAD/site/styles.css -------------------------------------------------------------------------------- /template-listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andygrn/Node.js-File-Server/HEAD/template-listing.js --------------------------------------------------------------------------------