├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── LICENSE ├── PlutoniumOS ├── core │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ └── index.js │ ├── lib │ │ ├── index.js │ │ ├── mouse │ │ │ └── index.js │ │ └── resolution │ │ │ └── index.js │ └── package.json ├── electronify │ ├── .gitignore │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── example │ │ ├── app │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── style.css │ │ ├── index.js │ │ └── version.js │ ├── lib │ │ └── index.js │ └── package.json └── shell │ ├── .gitignore │ ├── README.md │ ├── launcher │ ├── app │ │ ├── api.js │ │ ├── default.png │ │ ├── index.js │ │ ├── leave.js │ │ └── run.js │ ├── client │ │ ├── hammer.js │ │ ├── index.js │ │ └── jquery.js │ ├── index.html │ ├── package.json │ └── style.css │ ├── start.js │ └── wallpaper │ ├── app │ ├── default.png │ ├── index.js │ └── wallpaper.js │ ├── client │ └── index.js │ ├── index.html │ └── package.json ├── README.md ├── _not-working └── caching │ └── server.js ├── address-to-geocode ├── .gitignore ├── README.md ├── index.js ├── package.json └── test │ └── index.js ├── algorithms ├── 1.js └── 2.js ├── array-form-data ├── app.js ├── bin │ └── www ├── package.json ├── public │ └── stylesheets │ │ └── style.css ├── routes │ ├── index.js │ └── users.js └── views │ ├── error.jade │ ├── index.jade │ └── layout.jade ├── async-await-with-arrays └── index.js ├── cheerio ├── README.md ├── htmlFile.html ├── main.js └── package.json ├── ciphers ├── index.js ├── package-lock.json └── package.json ├── classes └── index.js ├── commander ├── index.js └── package.json ├── comp └── package.json ├── connect-to-websocket └── index.js ├── data-stream ├── .gitignore ├── generate.js ├── package.json └── server.js ├── daty ├── index.js └── package.json ├── demo-server ├── index.js └── package.json ├── ejs ├── index.js └── package.json ├── elastic-search ├── index.js └── package.json ├── electron-clock ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app │ └── index.js ├── index.html └── package.json ├── env ├── index.js └── package.json ├── es6-extends └── index.js ├── file-upload ├── README.md ├── index.js ├── package.json ├── public │ ├── index.html │ └── uploads │ │ └── .gitignore └── test.js ├── formidable-mongodb ├── .gitignore ├── formidable-test.js ├── package.json ├── public │ └── index.html └── server.js ├── happy-birthday-jo ├── .gitignore ├── 1.js ├── README.md ├── jo.png └── package.json ├── hello-blah ├── .gitignore ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── README.md ├── example │ └── index.js ├── lib │ └── index.js ├── package.json └── test │ └── index.js ├── html-to-docx ├── index.js ├── package.json ├── test.docx ├── test1.doc └── test1.docx ├── html-to-pdf ├── .gitignore ├── README.md ├── index.js └── package.json ├── jasmine-test ├── index.html ├── js │ └── main.js ├── package.json └── spec │ ├── check-files.js │ ├── check-html.js │ └── support │ └── jasmine.json ├── js-score ├── .gitignore ├── LICENSE ├── README.md ├── foo.aup ├── glorify.ogg ├── lib │ └── index.js ├── package.json ├── test │ ├── communityamerica.zip │ ├── glorify.ogg │ ├── index.js │ └── songs │ │ ├── glorify.js │ │ ├── gober.js │ │ ├── gospel.js │ │ └── tmp.js ├── tmp.js └── vocal-exercises │ ├── .gitignore │ ├── 1.js │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── jsdom ├── README.md ├── htmlFile.html ├── main.js └── package.json ├── json2md ├── index.js └── package.json ├── jwt-auth ├── index.js ├── keyFile.pem └── package.json ├── koa ├── index.js └── package.json ├── learning-es6 └── arrow-functions.js ├── limit-it └── index.js ├── login-with-bitbucket ├── .gitignore ├── README.md ├── bitbucket │ ├── abstract_api.js │ ├── authentication_test.js │ ├── email.js │ ├── email_test.js │ ├── index.js │ ├── repo.js │ ├── repo_test.js │ ├── request.js │ ├── secrets.js │ ├── ssh.js │ ├── ssh_test.js │ ├── user.js │ └── user_test.js ├── package.json └── server.js ├── login-with-github ├── .gitignore ├── README.md ├── package.json ├── public │ ├── index.html │ └── style.css └── server.js ├── longest-streak ├── README.md └── index.js ├── mongodb-map-reduce ├── .gitignore ├── README.md ├── package.json └── server.js ├── mongoose-sample-app ├── example │ └── index.js ├── lib │ └── index.js └── package.json ├── musicxml-to-json ├── foo.json ├── lib │ └── index.js └── test │ ├── 1.xml │ ├── 2.xml │ ├── 3.xml │ ├── My_First_Score.xml │ ├── foo.xml │ └── index.js ├── node-login ├── .gitignore ├── README.md ├── bitbucket-login.js ├── bitbucket │ ├── abstract_api.js │ ├── authentication_test.js │ ├── email.js │ ├── email_test.js │ ├── index.js │ ├── repo.js │ ├── repo_test.js │ ├── request.js │ ├── ssh.js │ ├── ssh_test.js │ ├── user.js │ └── user_test.js ├── github-login.js ├── package.json ├── public │ ├── 404.html │ ├── css │ │ └── style.css │ ├── editable │ │ ├── css │ │ │ └── bootstrap-editable.css │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ ├── js │ │ │ ├── bootstrap-editable.js │ │ │ └── bootstrap-editable.min.js │ │ └── libs │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ │ └── jquery │ │ │ └── jquery-1.8.2.min.js │ ├── error.html │ ├── img │ │ ├── 404.jpg │ │ ├── bitbucket-icon.png │ │ ├── github-icon.png │ │ └── spinner.gif │ ├── index.html │ ├── js │ │ └── client.js │ └── profile.html ├── secrets.template.js ├── server.js └── user.js ├── npm-programmatically ├── .gitignore ├── README.md ├── index.js └── tests │ └── package.json ├── nullish-coalescing └── index.js ├── optional-chaining └── index.js ├── orientdb └── index.js ├── package.json ├── people-information-db ├── .gitignore ├── README.md ├── html.js ├── package.json └── server.js ├── phantom ├── google.pdf ├── index.js └── package.json ├── player.js ├── example │ ├── ._index.html │ └── index.html └── lib │ ├── player.css │ └── player.js ├── post-message ├── index.js ├── receiver │ └── html │ │ └── index.html └── sender │ └── html │ ├── .index.html.swp │ └── index.html ├── remarkable ├── index.js └── package.json ├── rename ├── index.js └── test │ └── foo │ └── a ├── score-scanner ├── ._out.png ├── lib │ ├── bubbles │ │ └── index.js │ ├── index.js │ └── portative │ │ └── index.js ├── out.png └── test │ ├── foo.png │ ├── fur-elise.png │ └── index.js ├── sequelizejs ├── README.md ├── books-issue.js ├── db.js ├── index.js ├── many-to-many.js ├── one-to-many.js ├── package.json └── remote.js ├── server-file-upload ├── package.json └── server.js ├── showdown ├── index.js └── package.json ├── streams ├── README.md ├── index.js └── package.json ├── templates-vs-paths └── index.js ├── using-sockjs ├── .gitignore ├── package.json ├── public │ └── index.html ├── readme.md └── server.js ├── web-sockets ├── package.json ├── public │ ├── html │ │ └── index.html │ └── js │ │ └── socket.io.js └── server.js ├── website-downloder ├── foo.js ├── lib │ └── index.js ├── package.json └── test │ ├── index.js │ └── localhost │ ├── api │ └── plugin-file │ │ └── lightbox │ │ └── css │ │ └── lightbox.css │ ├── favicon.ico │ ├── images │ └── logo.png │ ├── index.html │ └── theme │ └── css │ └── style.css ├── webview-electron ├── README.md ├── app.js ├── index.html └── package.json └── who-uses-me ├── index.js └── packages.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- 1 | ## Documentation 2 | 3 | You can see below the API reference of this module. 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /PlutoniumOS/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/core/.gitignore -------------------------------------------------------------------------------- /PlutoniumOS/core/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/core/CONTRIBUTING.md -------------------------------------------------------------------------------- /PlutoniumOS/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/core/LICENSE -------------------------------------------------------------------------------- /PlutoniumOS/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/core/README.md -------------------------------------------------------------------------------- /PlutoniumOS/core/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/core/example/index.js -------------------------------------------------------------------------------- /PlutoniumOS/core/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/core/lib/index.js -------------------------------------------------------------------------------- /PlutoniumOS/core/lib/mouse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/core/lib/mouse/index.js -------------------------------------------------------------------------------- /PlutoniumOS/core/lib/resolution/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require("screenres"); 2 | -------------------------------------------------------------------------------- /PlutoniumOS/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/core/package.json -------------------------------------------------------------------------------- /PlutoniumOS/electronify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/.gitignore -------------------------------------------------------------------------------- /PlutoniumOS/electronify/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/CONTRIBUTING.md -------------------------------------------------------------------------------- /PlutoniumOS/electronify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/LICENSE -------------------------------------------------------------------------------- /PlutoniumOS/electronify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/README.md -------------------------------------------------------------------------------- /PlutoniumOS/electronify/example/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/example/app/index.html -------------------------------------------------------------------------------- /PlutoniumOS/electronify/example/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/example/app/main.js -------------------------------------------------------------------------------- /PlutoniumOS/electronify/example/app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/example/app/style.css -------------------------------------------------------------------------------- /PlutoniumOS/electronify/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/example/index.js -------------------------------------------------------------------------------- /PlutoniumOS/electronify/example/version.js: -------------------------------------------------------------------------------- 1 | module.exports = require("../package").version; 2 | -------------------------------------------------------------------------------- /PlutoniumOS/electronify/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/lib/index.js -------------------------------------------------------------------------------- /PlutoniumOS/electronify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/electronify/package.json -------------------------------------------------------------------------------- /PlutoniumOS/shell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/.gitignore -------------------------------------------------------------------------------- /PlutoniumOS/shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/README.md -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/app/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/app/api.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/app/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/app/default.png -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/app/index.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/app/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/app/leave.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/app/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/app/run.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/client/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/client/hammer.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/client/index.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/client/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/client/jquery.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/index.html -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/package.json -------------------------------------------------------------------------------- /PlutoniumOS/shell/launcher/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/launcher/style.css -------------------------------------------------------------------------------- /PlutoniumOS/shell/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/start.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/wallpaper/app/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/wallpaper/app/default.png -------------------------------------------------------------------------------- /PlutoniumOS/shell/wallpaper/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/wallpaper/app/index.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/wallpaper/app/wallpaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/wallpaper/app/wallpaper.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/wallpaper/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/wallpaper/client/index.js -------------------------------------------------------------------------------- /PlutoniumOS/shell/wallpaper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/wallpaper/index.html -------------------------------------------------------------------------------- /PlutoniumOS/shell/wallpaper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/PlutoniumOS/shell/wallpaper/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /_not-working/caching/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/_not-working/caching/server.js -------------------------------------------------------------------------------- /address-to-geocode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/address-to-geocode/.gitignore -------------------------------------------------------------------------------- /address-to-geocode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/address-to-geocode/README.md -------------------------------------------------------------------------------- /address-to-geocode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/address-to-geocode/index.js -------------------------------------------------------------------------------- /address-to-geocode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/address-to-geocode/package.json -------------------------------------------------------------------------------- /address-to-geocode/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/address-to-geocode/test/index.js -------------------------------------------------------------------------------- /algorithms/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/algorithms/1.js -------------------------------------------------------------------------------- /algorithms/2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/algorithms/2.js -------------------------------------------------------------------------------- /array-form-data/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/app.js -------------------------------------------------------------------------------- /array-form-data/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/bin/www -------------------------------------------------------------------------------- /array-form-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/package.json -------------------------------------------------------------------------------- /array-form-data/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/public/stylesheets/style.css -------------------------------------------------------------------------------- /array-form-data/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/routes/index.js -------------------------------------------------------------------------------- /array-form-data/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/routes/users.js -------------------------------------------------------------------------------- /array-form-data/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/views/error.jade -------------------------------------------------------------------------------- /array-form-data/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/views/index.jade -------------------------------------------------------------------------------- /array-form-data/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/array-form-data/views/layout.jade -------------------------------------------------------------------------------- /async-await-with-arrays/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/async-await-with-arrays/index.js -------------------------------------------------------------------------------- /cheerio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/cheerio/README.md -------------------------------------------------------------------------------- /cheerio/htmlFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/cheerio/htmlFile.html -------------------------------------------------------------------------------- /cheerio/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/cheerio/main.js -------------------------------------------------------------------------------- /cheerio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/cheerio/package.json -------------------------------------------------------------------------------- /ciphers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/ciphers/index.js -------------------------------------------------------------------------------- /ciphers/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/ciphers/package-lock.json -------------------------------------------------------------------------------- /ciphers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/ciphers/package.json -------------------------------------------------------------------------------- /classes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/classes/index.js -------------------------------------------------------------------------------- /commander/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/commander/index.js -------------------------------------------------------------------------------- /commander/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/commander/package.json -------------------------------------------------------------------------------- /comp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/comp/package.json -------------------------------------------------------------------------------- /connect-to-websocket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/connect-to-websocket/index.js -------------------------------------------------------------------------------- /data-stream/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *~ 3 | -------------------------------------------------------------------------------- /data-stream/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/data-stream/generate.js -------------------------------------------------------------------------------- /data-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/data-stream/package.json -------------------------------------------------------------------------------- /data-stream/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/data-stream/server.js -------------------------------------------------------------------------------- /daty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/daty/index.js -------------------------------------------------------------------------------- /daty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/daty/package.json -------------------------------------------------------------------------------- /demo-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/demo-server/index.js -------------------------------------------------------------------------------- /demo-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/demo-server/package.json -------------------------------------------------------------------------------- /ejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/ejs/index.js -------------------------------------------------------------------------------- /ejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/ejs/package.json -------------------------------------------------------------------------------- /elastic-search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/elastic-search/index.js -------------------------------------------------------------------------------- /elastic-search/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/elastic-search/package.json -------------------------------------------------------------------------------- /electron-clock/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/electron-clock/CONTRIBUTING.md -------------------------------------------------------------------------------- /electron-clock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/electron-clock/LICENSE -------------------------------------------------------------------------------- /electron-clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/electron-clock/README.md -------------------------------------------------------------------------------- /electron-clock/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/electron-clock/app/index.js -------------------------------------------------------------------------------- /electron-clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/electron-clock/index.html -------------------------------------------------------------------------------- /electron-clock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/electron-clock/package.json -------------------------------------------------------------------------------- /env/index.js: -------------------------------------------------------------------------------- 1 | const 2 | -------------------------------------------------------------------------------- /env/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/env/package.json -------------------------------------------------------------------------------- /es6-extends/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/es6-extends/index.js -------------------------------------------------------------------------------- /file-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/file-upload/README.md -------------------------------------------------------------------------------- /file-upload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/file-upload/index.js -------------------------------------------------------------------------------- /file-upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/file-upload/package.json -------------------------------------------------------------------------------- /file-upload/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/file-upload/public/index.html -------------------------------------------------------------------------------- /file-upload/public/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /file-upload/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/file-upload/test.js -------------------------------------------------------------------------------- /formidable-mongodb/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *~ 3 | -------------------------------------------------------------------------------- /formidable-mongodb/formidable-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/formidable-mongodb/formidable-test.js -------------------------------------------------------------------------------- /formidable-mongodb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/formidable-mongodb/package.json -------------------------------------------------------------------------------- /formidable-mongodb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/formidable-mongodb/public/index.html -------------------------------------------------------------------------------- /formidable-mongodb/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/formidable-mongodb/server.js -------------------------------------------------------------------------------- /happy-birthday-jo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/happy-birthday-jo/.gitignore -------------------------------------------------------------------------------- /happy-birthday-jo/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/happy-birthday-jo/1.js -------------------------------------------------------------------------------- /happy-birthday-jo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/happy-birthday-jo/README.md -------------------------------------------------------------------------------- /happy-birthday-jo/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/happy-birthday-jo/jo.png -------------------------------------------------------------------------------- /happy-birthday-jo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/happy-birthday-jo/package.json -------------------------------------------------------------------------------- /hello-blah/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/hello-blah/.gitignore -------------------------------------------------------------------------------- /hello-blah/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/hello-blah/CONTRIBUTING.md -------------------------------------------------------------------------------- /hello-blah/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/hello-blah/DOCUMENTATION.md -------------------------------------------------------------------------------- /hello-blah/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/hello-blah/README.md -------------------------------------------------------------------------------- /hello-blah/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/hello-blah/example/index.js -------------------------------------------------------------------------------- /hello-blah/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/hello-blah/lib/index.js -------------------------------------------------------------------------------- /hello-blah/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/hello-blah/package.json -------------------------------------------------------------------------------- /hello-blah/test/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html-to-docx/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/html-to-docx/index.js -------------------------------------------------------------------------------- /html-to-docx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/html-to-docx/package.json -------------------------------------------------------------------------------- /html-to-docx/test.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/html-to-docx/test.docx -------------------------------------------------------------------------------- /html-to-docx/test1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/html-to-docx/test1.doc -------------------------------------------------------------------------------- /html-to-docx/test1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/html-to-docx/test1.docx -------------------------------------------------------------------------------- /html-to-pdf/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | config.json 4 | -------------------------------------------------------------------------------- /html-to-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/html-to-pdf/README.md -------------------------------------------------------------------------------- /html-to-pdf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/html-to-pdf/index.js -------------------------------------------------------------------------------- /html-to-pdf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/html-to-pdf/package.json -------------------------------------------------------------------------------- /jasmine-test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jasmine-test/index.html -------------------------------------------------------------------------------- /jasmine-test/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jasmine-test/js/main.js -------------------------------------------------------------------------------- /jasmine-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jasmine-test/package.json -------------------------------------------------------------------------------- /jasmine-test/spec/check-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jasmine-test/spec/check-files.js -------------------------------------------------------------------------------- /jasmine-test/spec/check-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jasmine-test/spec/check-html.js -------------------------------------------------------------------------------- /jasmine-test/spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jasmine-test/spec/support/jasmine.json -------------------------------------------------------------------------------- /js-score/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/.gitignore -------------------------------------------------------------------------------- /js-score/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/LICENSE -------------------------------------------------------------------------------- /js-score/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/README.md -------------------------------------------------------------------------------- /js-score/foo.aup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/foo.aup -------------------------------------------------------------------------------- /js-score/glorify.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/glorify.ogg -------------------------------------------------------------------------------- /js-score/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/lib/index.js -------------------------------------------------------------------------------- /js-score/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/package.json -------------------------------------------------------------------------------- /js-score/test/communityamerica.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/test/communityamerica.zip -------------------------------------------------------------------------------- /js-score/test/glorify.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/test/glorify.ogg -------------------------------------------------------------------------------- /js-score/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/test/index.js -------------------------------------------------------------------------------- /js-score/test/songs/glorify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/test/songs/glorify.js -------------------------------------------------------------------------------- /js-score/test/songs/gober.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/test/songs/gober.js -------------------------------------------------------------------------------- /js-score/test/songs/gospel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/test/songs/gospel.js -------------------------------------------------------------------------------- /js-score/test/songs/tmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/test/songs/tmp.js -------------------------------------------------------------------------------- /js-score/tmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/tmp.js -------------------------------------------------------------------------------- /js-score/vocal-exercises/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/vocal-exercises/.gitignore -------------------------------------------------------------------------------- /js-score/vocal-exercises/1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/vocal-exercises/1.js -------------------------------------------------------------------------------- /js-score/vocal-exercises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/vocal-exercises/LICENSE -------------------------------------------------------------------------------- /js-score/vocal-exercises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/vocal-exercises/README.md -------------------------------------------------------------------------------- /js-score/vocal-exercises/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/vocal-exercises/index.js -------------------------------------------------------------------------------- /js-score/vocal-exercises/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/js-score/vocal-exercises/package.json -------------------------------------------------------------------------------- /jsdom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jsdom/README.md -------------------------------------------------------------------------------- /jsdom/htmlFile.html: -------------------------------------------------------------------------------- 1 |
Testing the jsDom NodeJS module.
2 | -------------------------------------------------------------------------------- /jsdom/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jsdom/main.js -------------------------------------------------------------------------------- /jsdom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jsdom/package.json -------------------------------------------------------------------------------- /json2md/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/json2md/index.js -------------------------------------------------------------------------------- /json2md/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/json2md/package.json -------------------------------------------------------------------------------- /jwt-auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jwt-auth/index.js -------------------------------------------------------------------------------- /jwt-auth/keyFile.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jwt-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/jwt-auth/package.json -------------------------------------------------------------------------------- /koa/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/koa/index.js -------------------------------------------------------------------------------- /koa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/koa/package.json -------------------------------------------------------------------------------- /learning-es6/arrow-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/learning-es6/arrow-functions.js -------------------------------------------------------------------------------- /limit-it/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/limit-it/index.js -------------------------------------------------------------------------------- /login-with-bitbucket/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | *~ 3 | -------------------------------------------------------------------------------- /login-with-bitbucket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/README.md -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/abstract_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/abstract_api.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/authentication_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/authentication_test.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/email.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/email_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/email_test.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/index.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/repo.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/repo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/repo_test.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/request.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/secrets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/secrets.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/ssh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/ssh.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/ssh_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/ssh_test.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/user.js -------------------------------------------------------------------------------- /login-with-bitbucket/bitbucket/user_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/bitbucket/user_test.js -------------------------------------------------------------------------------- /login-with-bitbucket/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/package.json -------------------------------------------------------------------------------- /login-with-bitbucket/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-bitbucket/server.js -------------------------------------------------------------------------------- /login-with-github/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | *~ 3 | -------------------------------------------------------------------------------- /login-with-github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-github/README.md -------------------------------------------------------------------------------- /login-with-github/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-github/package.json -------------------------------------------------------------------------------- /login-with-github/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-github/public/index.html -------------------------------------------------------------------------------- /login-with-github/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-github/public/style.css -------------------------------------------------------------------------------- /login-with-github/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/login-with-github/server.js -------------------------------------------------------------------------------- /longest-streak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/longest-streak/README.md -------------------------------------------------------------------------------- /longest-streak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/longest-streak/index.js -------------------------------------------------------------------------------- /mongodb-map-reduce/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /node_modules 3 | -------------------------------------------------------------------------------- /mongodb-map-reduce/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongodb-map-reduce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/mongodb-map-reduce/package.json -------------------------------------------------------------------------------- /mongodb-map-reduce/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/mongodb-map-reduce/server.js -------------------------------------------------------------------------------- /mongoose-sample-app/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/mongoose-sample-app/example/index.js -------------------------------------------------------------------------------- /mongoose-sample-app/lib/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongoose-sample-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/mongoose-sample-app/package.json -------------------------------------------------------------------------------- /musicxml-to-json/foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/musicxml-to-json/foo.json -------------------------------------------------------------------------------- /musicxml-to-json/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/musicxml-to-json/lib/index.js -------------------------------------------------------------------------------- /musicxml-to-json/test/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/musicxml-to-json/test/1.xml -------------------------------------------------------------------------------- /musicxml-to-json/test/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/musicxml-to-json/test/2.xml -------------------------------------------------------------------------------- /musicxml-to-json/test/3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/musicxml-to-json/test/3.xml -------------------------------------------------------------------------------- /musicxml-to-json/test/My_First_Score.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/musicxml-to-json/test/My_First_Score.xml -------------------------------------------------------------------------------- /musicxml-to-json/test/foo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/musicxml-to-json/test/foo.xml -------------------------------------------------------------------------------- /musicxml-to-json/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/musicxml-to-json/test/index.js -------------------------------------------------------------------------------- /node-login/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | *~ 3 | secrets.js 4 | -------------------------------------------------------------------------------- /node-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/README.md -------------------------------------------------------------------------------- /node-login/bitbucket-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket-login.js -------------------------------------------------------------------------------- /node-login/bitbucket/abstract_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/abstract_api.js -------------------------------------------------------------------------------- /node-login/bitbucket/authentication_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/authentication_test.js -------------------------------------------------------------------------------- /node-login/bitbucket/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/email.js -------------------------------------------------------------------------------- /node-login/bitbucket/email_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/email_test.js -------------------------------------------------------------------------------- /node-login/bitbucket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/index.js -------------------------------------------------------------------------------- /node-login/bitbucket/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/repo.js -------------------------------------------------------------------------------- /node-login/bitbucket/repo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/repo_test.js -------------------------------------------------------------------------------- /node-login/bitbucket/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/request.js -------------------------------------------------------------------------------- /node-login/bitbucket/ssh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/ssh.js -------------------------------------------------------------------------------- /node-login/bitbucket/ssh_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/ssh_test.js -------------------------------------------------------------------------------- /node-login/bitbucket/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/user.js -------------------------------------------------------------------------------- /node-login/bitbucket/user_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/bitbucket/user_test.js -------------------------------------------------------------------------------- /node-login/github-login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/github-login.js -------------------------------------------------------------------------------- /node-login/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/package.json -------------------------------------------------------------------------------- /node-login/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/404.html -------------------------------------------------------------------------------- /node-login/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/css/style.css -------------------------------------------------------------------------------- /node-login/public/editable/css/bootstrap-editable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/css/bootstrap-editable.css -------------------------------------------------------------------------------- /node-login/public/editable/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/img/clear.png -------------------------------------------------------------------------------- /node-login/public/editable/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/img/loading.gif -------------------------------------------------------------------------------- /node-login/public/editable/js/bootstrap-editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/js/bootstrap-editable.js -------------------------------------------------------------------------------- /node-login/public/editable/js/bootstrap-editable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/js/bootstrap-editable.min.js -------------------------------------------------------------------------------- /node-login/public/editable/libs/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /node-login/public/editable/libs/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /node-login/public/editable/libs/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /node-login/public/editable/libs/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /node-login/public/editable/libs/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /node-login/public/editable/libs/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /node-login/public/editable/libs/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /node-login/public/editable/libs/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /node-login/public/editable/libs/jquery/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/editable/libs/jquery/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /node-login/public/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/error.html -------------------------------------------------------------------------------- /node-login/public/img/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/img/404.jpg -------------------------------------------------------------------------------- /node-login/public/img/bitbucket-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/img/bitbucket-icon.png -------------------------------------------------------------------------------- /node-login/public/img/github-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/img/github-icon.png -------------------------------------------------------------------------------- /node-login/public/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/img/spinner.gif -------------------------------------------------------------------------------- /node-login/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/index.html -------------------------------------------------------------------------------- /node-login/public/js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/js/client.js -------------------------------------------------------------------------------- /node-login/public/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/public/profile.html -------------------------------------------------------------------------------- /node-login/secrets.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/secrets.template.js -------------------------------------------------------------------------------- /node-login/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/server.js -------------------------------------------------------------------------------- /node-login/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/node-login/user.js -------------------------------------------------------------------------------- /npm-programmatically/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/npm-programmatically/.gitignore -------------------------------------------------------------------------------- /npm-programmatically/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/npm-programmatically/README.md -------------------------------------------------------------------------------- /npm-programmatically/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/npm-programmatically/index.js -------------------------------------------------------------------------------- /npm-programmatically/tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/npm-programmatically/tests/package.json -------------------------------------------------------------------------------- /nullish-coalescing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/nullish-coalescing/index.js -------------------------------------------------------------------------------- /optional-chaining/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/optional-chaining/index.js -------------------------------------------------------------------------------- /orientdb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/orientdb/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /people-information-db/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *~ 3 | -------------------------------------------------------------------------------- /people-information-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/people-information-db/README.md -------------------------------------------------------------------------------- /people-information-db/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/people-information-db/html.js -------------------------------------------------------------------------------- /people-information-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/people-information-db/package.json -------------------------------------------------------------------------------- /people-information-db/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/people-information-db/server.js -------------------------------------------------------------------------------- /phantom/google.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/phantom/google.pdf -------------------------------------------------------------------------------- /phantom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/phantom/index.js -------------------------------------------------------------------------------- /phantom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/phantom/package.json -------------------------------------------------------------------------------- /player.js/example/._index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/player.js/example/._index.html -------------------------------------------------------------------------------- /player.js/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/player.js/example/index.html -------------------------------------------------------------------------------- /player.js/lib/player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/player.js/lib/player.css -------------------------------------------------------------------------------- /player.js/lib/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/player.js/lib/player.js -------------------------------------------------------------------------------- /post-message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/post-message/index.js -------------------------------------------------------------------------------- /post-message/receiver/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/post-message/receiver/html/index.html -------------------------------------------------------------------------------- /post-message/sender/html/.index.html.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/post-message/sender/html/.index.html.swp -------------------------------------------------------------------------------- /post-message/sender/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/post-message/sender/html/index.html -------------------------------------------------------------------------------- /remarkable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/remarkable/index.js -------------------------------------------------------------------------------- /remarkable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/remarkable/package.json -------------------------------------------------------------------------------- /rename/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/rename/index.js -------------------------------------------------------------------------------- /rename/test/foo/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /score-scanner/._out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/score-scanner/._out.png -------------------------------------------------------------------------------- /score-scanner/lib/bubbles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/score-scanner/lib/bubbles/index.js -------------------------------------------------------------------------------- /score-scanner/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/score-scanner/lib/index.js -------------------------------------------------------------------------------- /score-scanner/lib/portative/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/score-scanner/lib/portative/index.js -------------------------------------------------------------------------------- /score-scanner/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/score-scanner/out.png -------------------------------------------------------------------------------- /score-scanner/test/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/score-scanner/test/foo.png -------------------------------------------------------------------------------- /score-scanner/test/fur-elise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/score-scanner/test/fur-elise.png -------------------------------------------------------------------------------- /score-scanner/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/score-scanner/test/index.js -------------------------------------------------------------------------------- /sequelizejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/sequelizejs/README.md -------------------------------------------------------------------------------- /sequelizejs/books-issue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/sequelizejs/books-issue.js -------------------------------------------------------------------------------- /sequelizejs/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/sequelizejs/db.js -------------------------------------------------------------------------------- /sequelizejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/sequelizejs/index.js -------------------------------------------------------------------------------- /sequelizejs/many-to-many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/sequelizejs/many-to-many.js -------------------------------------------------------------------------------- /sequelizejs/one-to-many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/sequelizejs/one-to-many.js -------------------------------------------------------------------------------- /sequelizejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/sequelizejs/package.json -------------------------------------------------------------------------------- /sequelizejs/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/sequelizejs/remote.js -------------------------------------------------------------------------------- /server-file-upload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/server-file-upload/package.json -------------------------------------------------------------------------------- /server-file-upload/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/server-file-upload/server.js -------------------------------------------------------------------------------- /showdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/showdown/index.js -------------------------------------------------------------------------------- /showdown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/showdown/package.json -------------------------------------------------------------------------------- /streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/streams/README.md -------------------------------------------------------------------------------- /streams/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/streams/index.js -------------------------------------------------------------------------------- /streams/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/streams/package.json -------------------------------------------------------------------------------- /templates-vs-paths/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/templates-vs-paths/index.js -------------------------------------------------------------------------------- /using-sockjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *~ 3 | -------------------------------------------------------------------------------- /using-sockjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/using-sockjs/package.json -------------------------------------------------------------------------------- /using-sockjs/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/using-sockjs/public/index.html -------------------------------------------------------------------------------- /using-sockjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/using-sockjs/readme.md -------------------------------------------------------------------------------- /using-sockjs/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/using-sockjs/server.js -------------------------------------------------------------------------------- /web-sockets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/web-sockets/package.json -------------------------------------------------------------------------------- /web-sockets/public/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/web-sockets/public/html/index.html -------------------------------------------------------------------------------- /web-sockets/public/js/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/web-sockets/public/js/socket.io.js -------------------------------------------------------------------------------- /web-sockets/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/web-sockets/server.js -------------------------------------------------------------------------------- /website-downloder/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/foo.js -------------------------------------------------------------------------------- /website-downloder/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/lib/index.js -------------------------------------------------------------------------------- /website-downloder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/package.json -------------------------------------------------------------------------------- /website-downloder/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/test/index.js -------------------------------------------------------------------------------- /website-downloder/test/localhost/api/plugin-file/lightbox/css/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/test/localhost/api/plugin-file/lightbox/css/lightbox.css -------------------------------------------------------------------------------- /website-downloder/test/localhost/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/test/localhost/favicon.ico -------------------------------------------------------------------------------- /website-downloder/test/localhost/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/test/localhost/images/logo.png -------------------------------------------------------------------------------- /website-downloder/test/localhost/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/test/localhost/index.html -------------------------------------------------------------------------------- /website-downloder/test/localhost/theme/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/website-downloder/test/localhost/theme/css/style.css -------------------------------------------------------------------------------- /webview-electron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/webview-electron/README.md -------------------------------------------------------------------------------- /webview-electron/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/webview-electron/app.js -------------------------------------------------------------------------------- /webview-electron/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/webview-electron/index.html -------------------------------------------------------------------------------- /webview-electron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/webview-electron/package.json -------------------------------------------------------------------------------- /who-uses-me/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/who-uses-me/index.js -------------------------------------------------------------------------------- /who-uses-me/packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/learning-nodejs/HEAD/who-uses-me/packages.json --------------------------------------------------------------------------------