├── 3 different libraries for making a terminal UI ├── app.js └── package.json ├── 5 Different Packages to Help You Parse Files in Node.js ├── app.js └── package.json ├── 5 Things You (Probably) Didn't Know About Web Programing ├── Deep Copy │ └── app.js ├── Nginx headers │ └── Nginx headers.txt ├── Tab to Search │ ├── index.html │ └── opensearch.xml └── Theme color on mobile │ └── index.html ├── Back to the basics only using HTML & CSS ├── about.html ├── articles │ ├── how-and-why-i-made-valley-casino.html │ └── the-difference-between-regular-functions-and-arrow-functions.html ├── favicon.ico ├── index.html └── style.css ├── Downloading Files using Node.js ├── app.js └── package.json ├── Extra-Bits Image Processing in Node.js with Jimp ├── images │ └── shapes.png ├── main.js └── package.json ├── Generate PDFs (From HTML & CSS) with Node.js using Puppeteer ├── app.js └── package.json ├── Generating colour palette from an image ├── app.js └── package.json ├── Get started with the What3Words API in Node.js ├── .env ├── app.js └── package.json ├── Getting Started with AssemblyScript ├── app.js ├── main.ts ├── package.json └── utils.ts ├── Getting Started with YAML in Node ├── app.js ├── data.yaml └── package.json ├── How To Unzip Files in Node.js ├── app.js ├── package.json └── unicorn.zip ├── How to Bundle your Node.js application into an executable for Windows, Linux, and OS X ├── web game server │ ├── game │ │ └── index.html │ ├── main.js │ └── package.json └── web server │ ├── images │ └── shapes-800-800.png │ ├── main.js │ └── package.json ├── How to Communicate With the Serial Port in Node.js ├── app.js ├── arduino-serial-port.ino └── package.json ├── How to Communicate with a Virtual Serial Port in Node.js ├── package.json ├── reader.js └── writer.js ├── How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X ├── config.json ├── package.json ├── public │ └── index.html ├── server.js └── targets.md ├── How to Convert Text to Follow a Naming Convention └── app.js ├── How to Create PDFs in Node.js using PDF Kit ├── multiple-files │ ├── app.js │ ├── logo.png │ ├── package.json │ ├── patients.json │ ├── patients │ │ ├── Donovan Cottrell.pdf │ │ ├── Gordon White.pdf │ │ ├── Herbert Denny.pdf │ │ ├── Jasmine Lang.pdf │ │ ├── Juanita Miller.pdf │ │ ├── Tyler Smith.pdf │ │ └── William Nelson.pdf │ └── pdfkit-tables.js └── single-file │ ├── app.js │ ├── logo.png │ ├── package.json │ ├── patients.json │ ├── patients.pdf │ └── pdfkit-tables.js ├── How to Create a Command Line (CLI) Tool in Node.js ├── main.js └── package.json ├── How to Create a Secure REST API with Node.js and Express ├── generatePassword.js ├── middleware │ ├── auth.js │ └── roles.js ├── package.json ├── routes │ ├── auth.js │ └── messages.js └── server.js ├── How to Create an RSS API With a Cache ├── app.js └── package.json ├── How to Download YouTube Videos with Node.js using YouTube DL ├── app.js ├── downloading-with-express.js ├── extras.js └── package.json ├── How to Generate an RSS Feed in Node.js ├── app.js └── package.json ├── How to Get Started With JS IPFS and Node.js ├── app.js └── package.json ├── How to Get The MIME Type of a File in JavaScript ├── app.js └── package.json ├── How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js ├── categorizer.js ├── classifiers │ └── positive-and-negative-classifier.json ├── generators │ ├── positive-or-negative.js │ └── spam-or-ham.js └── package.json ├── How to Make a Bad Word Filter in JavaScript ├── app.js ├── extra-words.json └── package.json ├── How to Make a PDF Certificate Generator Part 2 ├── app.js ├── certificate.psd ├── certificate.xcf ├── fonts │ └── DancingScript-VariableFont_wght.txt ├── images │ └── certificate.png ├── package.json └── public │ └── index.html ├── How to Make a PDF Certificate Generator ├── app.js ├── certificate.psd ├── certificate.xcf ├── fonts │ └── DancingScript-VariableFont_wght.txt ├── images │ └── certificate.png └── package.json ├── How to Make a Product Key for your Node.js Application ├── app.js └── package.json ├── How to Make an Installation File on Windows ├── Hello World 1.nsi ├── LICENSE.txt ├── images │ └── shapes-800-800.png └── main.exe ├── How to Make your own File Hosting Site ├── app.js ├── auth.js ├── package.json └── public │ └── index.html ├── How to Rate Limit an Express App ├── app.js └── package.json ├── How to Upload Files to a Node.js Server ├── back-end │ ├── app.js │ └── package.json ├── data.yaml └── front-end │ └── index.html ├── How to Use Template Engines for Beginners in Node.js ├── app.js ├── package.json └── views │ ├── index.ejs │ ├── index.html │ └── index.pug ├── How to Work with Text Using Natural Language Processing ├── app.js └── package.json ├── How to use Google Forms data in Node.js ├── answers.json ├── app.js ├── credentials.json └── package.json ├── How to use the NPM Package open ├── app.js ├── file.txt ├── package.json └── shapes.png ├── Image Processing in Node.js with Jimp ├── app.js ├── images │ └── shapes.png └── package.json ├── Image Processing in Node.js with Sharp ├── app.js ├── images │ └── shapes.png └── package.json ├── Improving the Real Time Polling App using Socket.io ├── client │ └── index.html ├── package.json └── server.js ├── Introduction to using XPath in JavaScript ├── index.html └── style.css ├── JavaScript Password Generator - Part 2 ├── generator.js ├── index.html └── style.css ├── JavaScript Password Generator ├── generator.js ├── index.html └── style.css ├── JavaScript let vs var vs const ├── code.js └── let-vs-var-const.png ├── LICENSE ├── Make your Own Web Crawler ├── app.js └── package.json ├── Manual Parsing in Node.js for beginners ├── Manually Parsing 3 different formats │ ├── Assignments │ │ ├── Format 1 │ │ │ ├── data.txt │ │ │ ├── info.txt │ │ │ └── language-code-table.json │ │ ├── Format 2 │ │ │ ├── data.txt │ │ │ ├── info.txt │ │ │ └── lookup-table.json │ │ └── Format 3 │ │ │ ├── data.txt │ │ │ └── info.txt │ └── Finished │ │ ├── Format 1 │ │ ├── app.js │ │ ├── data.txt │ │ ├── language-code-table.json │ │ └── package.json │ │ ├── Format 2 │ │ ├── app.js │ │ ├── data.txt │ │ └── lookup-table.json │ │ └── Format 3 │ │ ├── app.js │ │ └── data.txt ├── Manually Parsing HTML in Node.js │ ├── customers │ │ ├── Charles Galvez.html │ │ ├── Charles Katz.html │ │ ├── Dominique Cagle.html │ │ ├── Harry Hollingsworth.html │ │ ├── Helen Clark.html │ │ ├── Jenny Edwards.html │ │ ├── Margaret James.html │ │ └── Mark Mills.html │ ├── package.json │ └── parser.js ├── Manually Parsing PDF in Node.js │ ├── Patients │ │ ├── Donovan Cottrell.pdf │ │ ├── Gordon White.pdf │ │ ├── Herbert Denny.pdf │ │ ├── Jasmine Lang.pdf │ │ ├── Juanita Miller.pdf │ │ ├── Tyler Smith.pdf │ │ └── William Nelson.pdf │ ├── package.json │ └── parser.js └── Manually Parsing Plain text in Node.js │ ├── parser.js │ └── users.txt ├── Node Package Manager ├── comments.md ├── npm versioning.png └── semantic versioning.png ├── Optimize Image Size With JavaScript in Node.js ├── optimize.js └── package.json ├── PDF.js Tutorial for beginners ├── app.js ├── dummy.pdf ├── index.html └── style.css ├── Playing around with Sockets in PHP and JavaScript ├── client.php ├── package.json └── server.js ├── Quick and Easy Library for Working with Zip Files in Node.js ├── Hello.txt ├── app.js ├── package.json └── shapes.png ├── README.md ├── Re-upload Image Processing in Node.js with Jimp + Extra Bits ├── app.js ├── images │ ├── edited-shapes.png │ └── shapes.png └── package.json ├── Real Time Polling App using Socket.io ├── client │ └── index.html ├── package.json └── server.js ├── Regular Expressions in under 10 minutes ├── assignment 1.txt └── assignment 2.txt ├── Scraping Reddit Programmer Humor with Node.js using Puppeteer ├── app.js └── package.json ├── Sending SMS using Node.js ├── SMS Appointment with express │ ├── index.js │ └── package.json ├── SMS Appointment with now │ ├── api │ │ └── index.js │ ├── now.json │ └── package.json ├── SMS Sender │ ├── package.json │ └── sms-sender.js └── twilio-payload.json ├── Styling the Real Time Polling App ├── client │ ├── favicon.ico │ ├── index.html │ └── style.css ├── package-lock.json ├── package.json └── server.js ├── Text to Speech in Node.js ├── app.js └── package.json ├── The Basics of YAML in Under 5 Minutes └── Introduction to YAML.pdf ├── Tic Tac Toe in JavaScript ├── game.js ├── index.html └── style.css ├── Top JavaScript Libraries for Making HTTP Requests ├── Axios client side │ ├── axios.js │ └── index.html ├── Axios server side │ ├── axios.js │ └── package-lock.json ├── Fetch │ ├── fetch.js │ └── index.html └── Request │ ├── package-lock.json │ └── request.js ├── Trying to recreate a program in a language I've never programmed in before └── Trying to recreate a JavaScript program in Go │ ├── Fill in The Blanks in Go │ └── main.go │ └── Fill in The Blanks in JavaScript │ ├── main.js │ └── package.json ├── Video Processing in Node.js with Jimp and FFmpeg ├── editor-with-multiple-inputs.js ├── editor.js └── package.json ├── Web Scraping with Node.js ├── app.js └── package.json ├── What is Bower ├── bower versioning.png ├── comments.md └── semantic versioning.png ├── What's the difference between Functions and Arrow Functions ├── example-1.js └── example-2.js ├── Working with DLLs in Node.js ├── How to call Managed C# DLLs from Node.js │ ├── MathLibrary.dll │ ├── MathLibrary │ │ ├── DllExport.bat Goes Here.txt │ │ ├── MathLibrary.sln │ │ └── MathLibrary │ │ │ ├── Math.cs │ │ │ ├── MathLibrary.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── MathLibrary.dll │ │ │ │ ├── MathLibrary.pdb │ │ │ │ ├── x64 │ │ │ │ ├── MathLibrary.dll │ │ │ │ └── MathLibrary.pdb │ │ │ │ └── x86 │ │ │ │ ├── MathLibrary.dll │ │ │ │ └── MathLibrary.pdb │ │ │ └── obj │ │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── MathLibrary.csproj.CoreCompileInputs.cache │ │ │ ├── MathLibrary.csproj.FileListAbsolute.txt │ │ │ ├── MathLibrary.csprojAssemblyReference.cache │ │ │ ├── MathLibrary.dll │ │ │ ├── MathLibrary.pdb │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── app.js │ └── package.json ├── How to call Native C++ DLLs from Node.js │ ├── app.js │ └── package.json └── How to call Native C++ Shared Objects from Node.js │ ├── C++ │ └── MathLibrary.cpp │ └── Node.js │ ├── MathLibrary.so │ ├── app.js │ └── package.json ├── Working with RSS Feeds in Node.js ├── app.js └── package.json └── Working with data in JavaScript ├── Working with BSON in JavaScript ├── app.js └── package.json ├── Working with CSV in JavaScript ├── app.js ├── cars.csv └── package.json ├── Working with JSON in JavaScript ├── app.js └── config.json ├── Working with TOML in JavaScript ├── app.js ├── config.toml └── package.json ├── Working with XLSX in JavaScript ├── app.js ├── file-example.xlsx └── package.json ├── Working with XML in JavaScript ├── app.js ├── data.xml └── package.json └── Working with YAML in JavaScript ├── app.js ├── data.yaml └── package.json /3 different libraries for making a terminal UI/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/3 different libraries for making a terminal UI/app.js -------------------------------------------------------------------------------- /3 different libraries for making a terminal UI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/3 different libraries for making a terminal UI/package.json -------------------------------------------------------------------------------- /5 Different Packages to Help You Parse Files in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/5 Different Packages to Help You Parse Files in Node.js/app.js -------------------------------------------------------------------------------- /5 Different Packages to Help You Parse Files in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/5 Different Packages to Help You Parse Files in Node.js/package.json -------------------------------------------------------------------------------- /5 Things You (Probably) Didn't Know About Web Programing/Deep Copy/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/5 Things You (Probably) Didn't Know About Web Programing/Deep Copy/app.js -------------------------------------------------------------------------------- /5 Things You (Probably) Didn't Know About Web Programing/Nginx headers/Nginx headers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/5 Things You (Probably) Didn't Know About Web Programing/Nginx headers/Nginx headers.txt -------------------------------------------------------------------------------- /5 Things You (Probably) Didn't Know About Web Programing/Tab to Search/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/5 Things You (Probably) Didn't Know About Web Programing/Tab to Search/index.html -------------------------------------------------------------------------------- /5 Things You (Probably) Didn't Know About Web Programing/Tab to Search/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/5 Things You (Probably) Didn't Know About Web Programing/Tab to Search/opensearch.xml -------------------------------------------------------------------------------- /5 Things You (Probably) Didn't Know About Web Programing/Theme color on mobile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/5 Things You (Probably) Didn't Know About Web Programing/Theme color on mobile/index.html -------------------------------------------------------------------------------- /Back to the basics only using HTML & CSS/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Back to the basics only using HTML & CSS/about.html -------------------------------------------------------------------------------- /Back to the basics only using HTML & CSS/articles/how-and-why-i-made-valley-casino.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Back to the basics only using HTML & CSS/articles/how-and-why-i-made-valley-casino.html -------------------------------------------------------------------------------- /Back to the basics only using HTML & CSS/articles/the-difference-between-regular-functions-and-arrow-functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Back to the basics only using HTML & CSS/articles/the-difference-between-regular-functions-and-arrow-functions.html -------------------------------------------------------------------------------- /Back to the basics only using HTML & CSS/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Back to the basics only using HTML & CSS/favicon.ico -------------------------------------------------------------------------------- /Back to the basics only using HTML & CSS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Back to the basics only using HTML & CSS/index.html -------------------------------------------------------------------------------- /Back to the basics only using HTML & CSS/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Back to the basics only using HTML & CSS/style.css -------------------------------------------------------------------------------- /Downloading Files using Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Downloading Files using Node.js/app.js -------------------------------------------------------------------------------- /Downloading Files using Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Downloading Files using Node.js/package.json -------------------------------------------------------------------------------- /Extra-Bits Image Processing in Node.js with Jimp/images/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Extra-Bits Image Processing in Node.js with Jimp/images/shapes.png -------------------------------------------------------------------------------- /Extra-Bits Image Processing in Node.js with Jimp/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Extra-Bits Image Processing in Node.js with Jimp/main.js -------------------------------------------------------------------------------- /Extra-Bits Image Processing in Node.js with Jimp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Extra-Bits Image Processing in Node.js with Jimp/package.json -------------------------------------------------------------------------------- /Generate PDFs (From HTML & CSS) with Node.js using Puppeteer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Generate PDFs (From HTML & CSS) with Node.js using Puppeteer/app.js -------------------------------------------------------------------------------- /Generate PDFs (From HTML & CSS) with Node.js using Puppeteer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Generate PDFs (From HTML & CSS) with Node.js using Puppeteer/package.json -------------------------------------------------------------------------------- /Generating colour palette from an image/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Generating colour palette from an image/app.js -------------------------------------------------------------------------------- /Generating colour palette from an image/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Generating colour palette from an image/package.json -------------------------------------------------------------------------------- /Get started with the What3Words API in Node.js/.env: -------------------------------------------------------------------------------- 1 | APIKEY=Your API key 2 | PORT=80 -------------------------------------------------------------------------------- /Get started with the What3Words API in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Get started with the What3Words API in Node.js/app.js -------------------------------------------------------------------------------- /Get started with the What3Words API in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Get started with the What3Words API in Node.js/package.json -------------------------------------------------------------------------------- /Getting Started with AssemblyScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Getting Started with AssemblyScript/app.js -------------------------------------------------------------------------------- /Getting Started with AssemblyScript/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Getting Started with AssemblyScript/main.ts -------------------------------------------------------------------------------- /Getting Started with AssemblyScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Getting Started with AssemblyScript/package.json -------------------------------------------------------------------------------- /Getting Started with AssemblyScript/utils.ts: -------------------------------------------------------------------------------- 1 | export declare function log (name: string): void; -------------------------------------------------------------------------------- /Getting Started with YAML in Node/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Getting Started with YAML in Node/app.js -------------------------------------------------------------------------------- /Getting Started with YAML in Node/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Getting Started with YAML in Node/data.yaml -------------------------------------------------------------------------------- /Getting Started with YAML in Node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Getting Started with YAML in Node/package.json -------------------------------------------------------------------------------- /How To Unzip Files in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How To Unzip Files in Node.js/app.js -------------------------------------------------------------------------------- /How To Unzip Files in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How To Unzip Files in Node.js/package.json -------------------------------------------------------------------------------- /How To Unzip Files in Node.js/unicorn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How To Unzip Files in Node.js/unicorn.zip -------------------------------------------------------------------------------- /How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web game server/game/index.html: -------------------------------------------------------------------------------- 1 |

My game

-------------------------------------------------------------------------------- /How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web game server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web game server/main.js -------------------------------------------------------------------------------- /How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web game server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web game server/package.json -------------------------------------------------------------------------------- /How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web server/images/shapes-800-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web server/images/shapes-800-800.png -------------------------------------------------------------------------------- /How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web server/main.js -------------------------------------------------------------------------------- /How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Bundle your Node.js application into an executable for Windows, Linux, and OS X/web server/package.json -------------------------------------------------------------------------------- /How to Communicate With the Serial Port in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Communicate With the Serial Port in Node.js/app.js -------------------------------------------------------------------------------- /How to Communicate With the Serial Port in Node.js/arduino-serial-port.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Communicate With the Serial Port in Node.js/arduino-serial-port.ino -------------------------------------------------------------------------------- /How to Communicate With the Serial Port in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Communicate With the Serial Port in Node.js/package.json -------------------------------------------------------------------------------- /How to Communicate with a Virtual Serial Port in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Communicate with a Virtual Serial Port in Node.js/package.json -------------------------------------------------------------------------------- /How to Communicate with a Virtual Serial Port in Node.js/reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Communicate with a Virtual Serial Port in Node.js/reader.js -------------------------------------------------------------------------------- /How to Communicate with a Virtual Serial Port in Node.js/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Communicate with a Virtual Serial Port in Node.js/writer.js -------------------------------------------------------------------------------- /How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X/package.json -------------------------------------------------------------------------------- /How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X/public/index.html: -------------------------------------------------------------------------------- 1 |

Hello World!

-------------------------------------------------------------------------------- /How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X/server.js -------------------------------------------------------------------------------- /How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X/targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Compile your Node.js Application into an Executable Using Nexe for Windows, Linux, and OS X/targets.md -------------------------------------------------------------------------------- /How to Convert Text to Follow a Naming Convention/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Convert Text to Follow a Naming Convention/app.js -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/app.js -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/logo.png -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/package.json -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/patients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/patients.json -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Donovan Cottrell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Donovan Cottrell.pdf -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Gordon White.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Gordon White.pdf -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Herbert Denny.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Herbert Denny.pdf -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Jasmine Lang.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Jasmine Lang.pdf -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Juanita Miller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Juanita Miller.pdf -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Tyler Smith.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/Tyler Smith.pdf -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/William Nelson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/patients/William Nelson.pdf -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/multiple-files/pdfkit-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/multiple-files/pdfkit-tables.js -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/single-file/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/single-file/app.js -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/single-file/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/single-file/logo.png -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/single-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/single-file/package.json -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/single-file/patients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/single-file/patients.json -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/single-file/patients.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/single-file/patients.pdf -------------------------------------------------------------------------------- /How to Create PDFs in Node.js using PDF Kit/single-file/pdfkit-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create PDFs in Node.js using PDF Kit/single-file/pdfkit-tables.js -------------------------------------------------------------------------------- /How to Create a Command Line (CLI) Tool in Node.js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Command Line (CLI) Tool in Node.js/main.js -------------------------------------------------------------------------------- /How to Create a Command Line (CLI) Tool in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Command Line (CLI) Tool in Node.js/package.json -------------------------------------------------------------------------------- /How to Create a Secure REST API with Node.js and Express/generatePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Secure REST API with Node.js and Express/generatePassword.js -------------------------------------------------------------------------------- /How to Create a Secure REST API with Node.js and Express/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Secure REST API with Node.js and Express/middleware/auth.js -------------------------------------------------------------------------------- /How to Create a Secure REST API with Node.js and Express/middleware/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Secure REST API with Node.js and Express/middleware/roles.js -------------------------------------------------------------------------------- /How to Create a Secure REST API with Node.js and Express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Secure REST API with Node.js and Express/package.json -------------------------------------------------------------------------------- /How to Create a Secure REST API with Node.js and Express/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Secure REST API with Node.js and Express/routes/auth.js -------------------------------------------------------------------------------- /How to Create a Secure REST API with Node.js and Express/routes/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Secure REST API with Node.js and Express/routes/messages.js -------------------------------------------------------------------------------- /How to Create a Secure REST API with Node.js and Express/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create a Secure REST API with Node.js and Express/server.js -------------------------------------------------------------------------------- /How to Create an RSS API With a Cache/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create an RSS API With a Cache/app.js -------------------------------------------------------------------------------- /How to Create an RSS API With a Cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Create an RSS API With a Cache/package.json -------------------------------------------------------------------------------- /How to Download YouTube Videos with Node.js using YouTube DL/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Download YouTube Videos with Node.js using YouTube DL/app.js -------------------------------------------------------------------------------- /How to Download YouTube Videos with Node.js using YouTube DL/downloading-with-express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Download YouTube Videos with Node.js using YouTube DL/downloading-with-express.js -------------------------------------------------------------------------------- /How to Download YouTube Videos with Node.js using YouTube DL/extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Download YouTube Videos with Node.js using YouTube DL/extras.js -------------------------------------------------------------------------------- /How to Download YouTube Videos with Node.js using YouTube DL/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Download YouTube Videos with Node.js using YouTube DL/package.json -------------------------------------------------------------------------------- /How to Generate an RSS Feed in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Generate an RSS Feed in Node.js/app.js -------------------------------------------------------------------------------- /How to Generate an RSS Feed in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Generate an RSS Feed in Node.js/package.json -------------------------------------------------------------------------------- /How to Get Started With JS IPFS and Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Get Started With JS IPFS and Node.js/app.js -------------------------------------------------------------------------------- /How to Get Started With JS IPFS and Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Get Started With JS IPFS and Node.js/package.json -------------------------------------------------------------------------------- /How to Get The MIME Type of a File in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Get The MIME Type of a File in JavaScript/app.js -------------------------------------------------------------------------------- /How to Get The MIME Type of a File in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Get The MIME Type of a File in JavaScript/package.json -------------------------------------------------------------------------------- /How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/categorizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/categorizer.js -------------------------------------------------------------------------------- /How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/classifiers/positive-and-negative-classifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/classifiers/positive-and-negative-classifier.json -------------------------------------------------------------------------------- /How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/generators/positive-or-negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/generators/positive-or-negative.js -------------------------------------------------------------------------------- /How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/generators/spam-or-ham.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/generators/spam-or-ham.js -------------------------------------------------------------------------------- /How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Anti-Spam Bot in Under 30 Lines of Code in Node.js/package.json -------------------------------------------------------------------------------- /How to Make a Bad Word Filter in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Bad Word Filter in JavaScript/app.js -------------------------------------------------------------------------------- /How to Make a Bad Word Filter in JavaScript/extra-words.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Bad Word Filter in JavaScript/extra-words.json -------------------------------------------------------------------------------- /How to Make a Bad Word Filter in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Bad Word Filter in JavaScript/package.json -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator Part 2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator Part 2/app.js -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator Part 2/certificate.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator Part 2/certificate.psd -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator Part 2/certificate.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator Part 2/certificate.xcf -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator Part 2/fonts/DancingScript-VariableFont_wght.txt: -------------------------------------------------------------------------------- 1 | https://fonts.google.com/specimen/Dancing+Script -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator Part 2/images/certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator Part 2/images/certificate.png -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator Part 2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator Part 2/package.json -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator Part 2/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator Part 2/public/index.html -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator/app.js -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator/certificate.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator/certificate.psd -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator/certificate.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator/certificate.xcf -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator/fonts/DancingScript-VariableFont_wght.txt: -------------------------------------------------------------------------------- 1 | https://fonts.google.com/specimen/Dancing+Script -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator/images/certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator/images/certificate.png -------------------------------------------------------------------------------- /How to Make a PDF Certificate Generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a PDF Certificate Generator/package.json -------------------------------------------------------------------------------- /How to Make a Product Key for your Node.js Application/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Product Key for your Node.js Application/app.js -------------------------------------------------------------------------------- /How to Make a Product Key for your Node.js Application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make a Product Key for your Node.js Application/package.json -------------------------------------------------------------------------------- /How to Make an Installation File on Windows/Hello World 1.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make an Installation File on Windows/Hello World 1.nsi -------------------------------------------------------------------------------- /How to Make an Installation File on Windows/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make an Installation File on Windows/LICENSE.txt -------------------------------------------------------------------------------- /How to Make an Installation File on Windows/images/shapes-800-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make an Installation File on Windows/images/shapes-800-800.png -------------------------------------------------------------------------------- /How to Make an Installation File on Windows/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make an Installation File on Windows/main.exe -------------------------------------------------------------------------------- /How to Make your own File Hosting Site/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make your own File Hosting Site/app.js -------------------------------------------------------------------------------- /How to Make your own File Hosting Site/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make your own File Hosting Site/auth.js -------------------------------------------------------------------------------- /How to Make your own File Hosting Site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make your own File Hosting Site/package.json -------------------------------------------------------------------------------- /How to Make your own File Hosting Site/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Make your own File Hosting Site/public/index.html -------------------------------------------------------------------------------- /How to Rate Limit an Express App/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Rate Limit an Express App/app.js -------------------------------------------------------------------------------- /How to Rate Limit an Express App/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Rate Limit an Express App/package.json -------------------------------------------------------------------------------- /How to Upload Files to a Node.js Server/back-end/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Upload Files to a Node.js Server/back-end/app.js -------------------------------------------------------------------------------- /How to Upload Files to a Node.js Server/back-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Upload Files to a Node.js Server/back-end/package.json -------------------------------------------------------------------------------- /How to Upload Files to a Node.js Server/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Upload Files to a Node.js Server/data.yaml -------------------------------------------------------------------------------- /How to Upload Files to a Node.js Server/front-end/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Upload Files to a Node.js Server/front-end/index.html -------------------------------------------------------------------------------- /How to Use Template Engines for Beginners in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Use Template Engines for Beginners in Node.js/app.js -------------------------------------------------------------------------------- /How to Use Template Engines for Beginners in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Use Template Engines for Beginners in Node.js/package.json -------------------------------------------------------------------------------- /How to Use Template Engines for Beginners in Node.js/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Use Template Engines for Beginners in Node.js/views/index.ejs -------------------------------------------------------------------------------- /How to Use Template Engines for Beginners in Node.js/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Use Template Engines for Beginners in Node.js/views/index.html -------------------------------------------------------------------------------- /How to Use Template Engines for Beginners in Node.js/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Use Template Engines for Beginners in Node.js/views/index.pug -------------------------------------------------------------------------------- /How to Work with Text Using Natural Language Processing/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Work with Text Using Natural Language Processing/app.js -------------------------------------------------------------------------------- /How to Work with Text Using Natural Language Processing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to Work with Text Using Natural Language Processing/package.json -------------------------------------------------------------------------------- /How to use Google Forms data in Node.js/answers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to use Google Forms data in Node.js/answers.json -------------------------------------------------------------------------------- /How to use Google Forms data in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to use Google Forms data in Node.js/app.js -------------------------------------------------------------------------------- /How to use Google Forms data in Node.js/credentials.json: -------------------------------------------------------------------------------- 1 | Your credentials goes here -------------------------------------------------------------------------------- /How to use Google Forms data in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to use Google Forms data in Node.js/package.json -------------------------------------------------------------------------------- /How to use the NPM Package open/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to use the NPM Package open/app.js -------------------------------------------------------------------------------- /How to use the NPM Package open/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to use the NPM Package open/file.txt -------------------------------------------------------------------------------- /How to use the NPM Package open/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to use the NPM Package open/package.json -------------------------------------------------------------------------------- /How to use the NPM Package open/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/How to use the NPM Package open/shapes.png -------------------------------------------------------------------------------- /Image Processing in Node.js with Jimp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Image Processing in Node.js with Jimp/app.js -------------------------------------------------------------------------------- /Image Processing in Node.js with Jimp/images/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Image Processing in Node.js with Jimp/images/shapes.png -------------------------------------------------------------------------------- /Image Processing in Node.js with Jimp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Image Processing in Node.js with Jimp/package.json -------------------------------------------------------------------------------- /Image Processing in Node.js with Sharp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Image Processing in Node.js with Sharp/app.js -------------------------------------------------------------------------------- /Image Processing in Node.js with Sharp/images/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Image Processing in Node.js with Sharp/images/shapes.png -------------------------------------------------------------------------------- /Image Processing in Node.js with Sharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Image Processing in Node.js with Sharp/package.json -------------------------------------------------------------------------------- /Improving the Real Time Polling App using Socket.io/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Improving the Real Time Polling App using Socket.io/client/index.html -------------------------------------------------------------------------------- /Improving the Real Time Polling App using Socket.io/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Improving the Real Time Polling App using Socket.io/package.json -------------------------------------------------------------------------------- /Improving the Real Time Polling App using Socket.io/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Improving the Real Time Polling App using Socket.io/server.js -------------------------------------------------------------------------------- /Introduction to using XPath in JavaScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Introduction to using XPath in JavaScript/index.html -------------------------------------------------------------------------------- /Introduction to using XPath in JavaScript/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Introduction to using XPath in JavaScript/style.css -------------------------------------------------------------------------------- /JavaScript Password Generator - Part 2/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/JavaScript Password Generator - Part 2/generator.js -------------------------------------------------------------------------------- /JavaScript Password Generator - Part 2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/JavaScript Password Generator - Part 2/index.html -------------------------------------------------------------------------------- /JavaScript Password Generator - Part 2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/JavaScript Password Generator - Part 2/style.css -------------------------------------------------------------------------------- /JavaScript Password Generator/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/JavaScript Password Generator/generator.js -------------------------------------------------------------------------------- /JavaScript Password Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/JavaScript Password Generator/index.html -------------------------------------------------------------------------------- /JavaScript Password Generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/JavaScript Password Generator/style.css -------------------------------------------------------------------------------- /JavaScript let vs var vs const/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/JavaScript let vs var vs const/code.js -------------------------------------------------------------------------------- /JavaScript let vs var vs const/let-vs-var-const.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/JavaScript let vs var vs const/let-vs-var-const.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /Make your Own Web Crawler/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Make your Own Web Crawler/app.js -------------------------------------------------------------------------------- /Make your Own Web Crawler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Make your Own Web Crawler/package.json -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 1/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 1/data.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 1/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 1/info.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 1/language-code-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 1/language-code-table.json -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 2/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 2/data.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 2/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 2/info.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 2/lookup-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 2/lookup-table.json -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 3/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 3/data.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 3/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Assignments/Format 3/info.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 1/app.js -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 1/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 1/data.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 1/language-code-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 1/language-code-table.json -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 1/package.json -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 2/app.js -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 2/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 2/data.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 2/lookup-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 2/lookup-table.json -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 3/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 3/app.js -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 3/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing 3 different formats/Finished/Format 3/data.txt -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Charles Galvez.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Charles Galvez.html -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Charles Katz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Charles Katz.html -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Dominique Cagle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Dominique Cagle.html -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Harry Hollingsworth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Harry Hollingsworth.html -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Helen Clark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Helen Clark.html -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Jenny Edwards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Jenny Edwards.html -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Margaret James.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Margaret James.html -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Mark Mills.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/customers/Mark Mills.html -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/package.json -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing HTML in Node.js/parser.js -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Donovan Cottrell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Donovan Cottrell.pdf -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Gordon White.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Gordon White.pdf -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Herbert Denny.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Herbert Denny.pdf -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Jasmine Lang.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Jasmine Lang.pdf -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Juanita Miller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Juanita Miller.pdf -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Tyler Smith.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/Tyler Smith.pdf -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/William Nelson.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/Patients/William Nelson.pdf -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/package.json -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing PDF in Node.js/parser.js -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing Plain text in Node.js/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing Plain text in Node.js/parser.js -------------------------------------------------------------------------------- /Manual Parsing in Node.js for beginners/Manually Parsing Plain text in Node.js/users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Manual Parsing in Node.js for beginners/Manually Parsing Plain text in Node.js/users.txt -------------------------------------------------------------------------------- /Node Package Manager/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Node Package Manager/comments.md -------------------------------------------------------------------------------- /Node Package Manager/npm versioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Node Package Manager/npm versioning.png -------------------------------------------------------------------------------- /Node Package Manager/semantic versioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Node Package Manager/semantic versioning.png -------------------------------------------------------------------------------- /Optimize Image Size With JavaScript in Node.js/optimize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Optimize Image Size With JavaScript in Node.js/optimize.js -------------------------------------------------------------------------------- /Optimize Image Size With JavaScript in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Optimize Image Size With JavaScript in Node.js/package.json -------------------------------------------------------------------------------- /PDF.js Tutorial for beginners/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/PDF.js Tutorial for beginners/app.js -------------------------------------------------------------------------------- /PDF.js Tutorial for beginners/dummy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/PDF.js Tutorial for beginners/dummy.pdf -------------------------------------------------------------------------------- /PDF.js Tutorial for beginners/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/PDF.js Tutorial for beginners/index.html -------------------------------------------------------------------------------- /PDF.js Tutorial for beginners/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/PDF.js Tutorial for beginners/style.css -------------------------------------------------------------------------------- /Playing around with Sockets in PHP and JavaScript/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Playing around with Sockets in PHP and JavaScript/client.php -------------------------------------------------------------------------------- /Playing around with Sockets in PHP and JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Playing around with Sockets in PHP and JavaScript/package.json -------------------------------------------------------------------------------- /Playing around with Sockets in PHP and JavaScript/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Playing around with Sockets in PHP and JavaScript/server.js -------------------------------------------------------------------------------- /Quick and Easy Library for Working with Zip Files in Node.js/Hello.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /Quick and Easy Library for Working with Zip Files in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Quick and Easy Library for Working with Zip Files in Node.js/app.js -------------------------------------------------------------------------------- /Quick and Easy Library for Working with Zip Files in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Quick and Easy Library for Working with Zip Files in Node.js/package.json -------------------------------------------------------------------------------- /Quick and Easy Library for Working with Zip Files in Node.js/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Quick and Easy Library for Working with Zip Files in Node.js/shapes.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /Re-upload Image Processing in Node.js with Jimp + Extra Bits/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Re-upload Image Processing in Node.js with Jimp + Extra Bits/app.js -------------------------------------------------------------------------------- /Re-upload Image Processing in Node.js with Jimp + Extra Bits/images/edited-shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Re-upload Image Processing in Node.js with Jimp + Extra Bits/images/edited-shapes.png -------------------------------------------------------------------------------- /Re-upload Image Processing in Node.js with Jimp + Extra Bits/images/shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Re-upload Image Processing in Node.js with Jimp + Extra Bits/images/shapes.png -------------------------------------------------------------------------------- /Re-upload Image Processing in Node.js with Jimp + Extra Bits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Re-upload Image Processing in Node.js with Jimp + Extra Bits/package.json -------------------------------------------------------------------------------- /Real Time Polling App using Socket.io/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Real Time Polling App using Socket.io/client/index.html -------------------------------------------------------------------------------- /Real Time Polling App using Socket.io/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Real Time Polling App using Socket.io/package.json -------------------------------------------------------------------------------- /Real Time Polling App using Socket.io/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Real Time Polling App using Socket.io/server.js -------------------------------------------------------------------------------- /Regular Expressions in under 10 minutes/assignment 1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Regular Expressions in under 10 minutes/assignment 1.txt -------------------------------------------------------------------------------- /Regular Expressions in under 10 minutes/assignment 2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Regular Expressions in under 10 minutes/assignment 2.txt -------------------------------------------------------------------------------- /Scraping Reddit Programmer Humor with Node.js using Puppeteer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Scraping Reddit Programmer Humor with Node.js using Puppeteer/app.js -------------------------------------------------------------------------------- /Scraping Reddit Programmer Humor with Node.js using Puppeteer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Scraping Reddit Programmer Humor with Node.js using Puppeteer/package.json -------------------------------------------------------------------------------- /Sending SMS using Node.js/SMS Appointment with express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Sending SMS using Node.js/SMS Appointment with express/index.js -------------------------------------------------------------------------------- /Sending SMS using Node.js/SMS Appointment with express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Sending SMS using Node.js/SMS Appointment with express/package.json -------------------------------------------------------------------------------- /Sending SMS using Node.js/SMS Appointment with now/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Sending SMS using Node.js/SMS Appointment with now/api/index.js -------------------------------------------------------------------------------- /Sending SMS using Node.js/SMS Appointment with now/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Sending SMS using Node.js/SMS Appointment with now/now.json -------------------------------------------------------------------------------- /Sending SMS using Node.js/SMS Appointment with now/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Sending SMS using Node.js/SMS Appointment with now/package.json -------------------------------------------------------------------------------- /Sending SMS using Node.js/SMS Sender/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Sending SMS using Node.js/SMS Sender/package.json -------------------------------------------------------------------------------- /Sending SMS using Node.js/SMS Sender/sms-sender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Sending SMS using Node.js/SMS Sender/sms-sender.js -------------------------------------------------------------------------------- /Sending SMS using Node.js/twilio-payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Sending SMS using Node.js/twilio-payload.json -------------------------------------------------------------------------------- /Styling the Real Time Polling App/client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Styling the Real Time Polling App/client/favicon.ico -------------------------------------------------------------------------------- /Styling the Real Time Polling App/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Styling the Real Time Polling App/client/index.html -------------------------------------------------------------------------------- /Styling the Real Time Polling App/client/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Styling the Real Time Polling App/client/style.css -------------------------------------------------------------------------------- /Styling the Real Time Polling App/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Styling the Real Time Polling App/package-lock.json -------------------------------------------------------------------------------- /Styling the Real Time Polling App/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Styling the Real Time Polling App/package.json -------------------------------------------------------------------------------- /Styling the Real Time Polling App/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Styling the Real Time Polling App/server.js -------------------------------------------------------------------------------- /Text to Speech in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Text to Speech in Node.js/app.js -------------------------------------------------------------------------------- /Text to Speech in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Text to Speech in Node.js/package.json -------------------------------------------------------------------------------- /The Basics of YAML in Under 5 Minutes/Introduction to YAML.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/The Basics of YAML in Under 5 Minutes/Introduction to YAML.pdf -------------------------------------------------------------------------------- /Tic Tac Toe in JavaScript/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Tic Tac Toe in JavaScript/game.js -------------------------------------------------------------------------------- /Tic Tac Toe in JavaScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Tic Tac Toe in JavaScript/index.html -------------------------------------------------------------------------------- /Tic Tac Toe in JavaScript/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Tic Tac Toe in JavaScript/style.css -------------------------------------------------------------------------------- /Top JavaScript Libraries for Making HTTP Requests/Axios client side/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Top JavaScript Libraries for Making HTTP Requests/Axios client side/axios.js -------------------------------------------------------------------------------- /Top JavaScript Libraries for Making HTTP Requests/Axios client side/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Top JavaScript Libraries for Making HTTP Requests/Axios client side/index.html -------------------------------------------------------------------------------- /Top JavaScript Libraries for Making HTTP Requests/Axios server side/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Top JavaScript Libraries for Making HTTP Requests/Axios server side/axios.js -------------------------------------------------------------------------------- /Top JavaScript Libraries for Making HTTP Requests/Axios server side/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Top JavaScript Libraries for Making HTTP Requests/Axios server side/package-lock.json -------------------------------------------------------------------------------- /Top JavaScript Libraries for Making HTTP Requests/Fetch/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Top JavaScript Libraries for Making HTTP Requests/Fetch/fetch.js -------------------------------------------------------------------------------- /Top JavaScript Libraries for Making HTTP Requests/Fetch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Top JavaScript Libraries for Making HTTP Requests/Fetch/index.html -------------------------------------------------------------------------------- /Top JavaScript Libraries for Making HTTP Requests/Request/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Top JavaScript Libraries for Making HTTP Requests/Request/package-lock.json -------------------------------------------------------------------------------- /Top JavaScript Libraries for Making HTTP Requests/Request/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Top JavaScript Libraries for Making HTTP Requests/Request/request.js -------------------------------------------------------------------------------- /Trying to recreate a program in a language I've never programmed in before/Trying to recreate a JavaScript program in Go/Fill in The Blanks in Go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Trying to recreate a program in a language I've never programmed in before/Trying to recreate a JavaScript program in Go/Fill in The Blanks in Go/main.go -------------------------------------------------------------------------------- /Trying to recreate a program in a language I've never programmed in before/Trying to recreate a JavaScript program in Go/Fill in The Blanks in JavaScript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Trying to recreate a program in a language I've never programmed in before/Trying to recreate a JavaScript program in Go/Fill in The Blanks in JavaScript/main.js -------------------------------------------------------------------------------- /Trying to recreate a program in a language I've never programmed in before/Trying to recreate a JavaScript program in Go/Fill in The Blanks in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Trying to recreate a program in a language I've never programmed in before/Trying to recreate a JavaScript program in Go/Fill in The Blanks in JavaScript/package.json -------------------------------------------------------------------------------- /Video Processing in Node.js with Jimp and FFmpeg/editor-with-multiple-inputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Video Processing in Node.js with Jimp and FFmpeg/editor-with-multiple-inputs.js -------------------------------------------------------------------------------- /Video Processing in Node.js with Jimp and FFmpeg/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Video Processing in Node.js with Jimp and FFmpeg/editor.js -------------------------------------------------------------------------------- /Video Processing in Node.js with Jimp and FFmpeg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Video Processing in Node.js with Jimp and FFmpeg/package.json -------------------------------------------------------------------------------- /Web Scraping with Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Web Scraping with Node.js/app.js -------------------------------------------------------------------------------- /Web Scraping with Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Web Scraping with Node.js/package.json -------------------------------------------------------------------------------- /What is Bower/bower versioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/What is Bower/bower versioning.png -------------------------------------------------------------------------------- /What is Bower/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/What is Bower/comments.md -------------------------------------------------------------------------------- /What is Bower/semantic versioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/What is Bower/semantic versioning.png -------------------------------------------------------------------------------- /What's the difference between Functions and Arrow Functions/example-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/What's the difference between Functions and Arrow Functions/example-1.js -------------------------------------------------------------------------------- /What's the difference between Functions and Arrow Functions/example-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/What's the difference between Functions and Arrow Functions/example-2.js -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary.dll -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/DllExport.bat Goes Here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/DllExport.bat Goes Here.txt -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary.sln -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/Math.cs -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/MathLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/MathLibrary.csproj -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/MathLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/MathLibrary.dll -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/MathLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/MathLibrary.pdb -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/x64/MathLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/x64/MathLibrary.dll -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/x64/MathLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/x64/MathLibrary.pdb -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/x86/MathLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/x86/MathLibrary.dll -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/x86/MathLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/bin/Debug/x86/MathLibrary.pdb -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 098bafc60aa76881ec3dd50f5005d6ec60ee7dec 2 | -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.dll -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/MathLibrary.pdb -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/MathLibrary/MathLibrary/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/app.js -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Managed C# DLLs from Node.js/package.json -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Native C++ DLLs from Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Native C++ DLLs from Node.js/app.js -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Native C++ DLLs from Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Native C++ DLLs from Node.js/package.json -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Native C++ Shared Objects from Node.js/C++/MathLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Native C++ Shared Objects from Node.js/C++/MathLibrary.cpp -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Native C++ Shared Objects from Node.js/Node.js/MathLibrary.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Native C++ Shared Objects from Node.js/Node.js/MathLibrary.so -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Native C++ Shared Objects from Node.js/Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Native C++ Shared Objects from Node.js/Node.js/app.js -------------------------------------------------------------------------------- /Working with DLLs in Node.js/How to call Native C++ Shared Objects from Node.js/Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with DLLs in Node.js/How to call Native C++ Shared Objects from Node.js/Node.js/package.json -------------------------------------------------------------------------------- /Working with RSS Feeds in Node.js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with RSS Feeds in Node.js/app.js -------------------------------------------------------------------------------- /Working with RSS Feeds in Node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with RSS Feeds in Node.js/package.json -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with BSON in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with BSON in JavaScript/app.js -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with BSON in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with BSON in JavaScript/package.json -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with CSV in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with CSV in JavaScript/app.js -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with CSV in JavaScript/cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with CSV in JavaScript/cars.csv -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with CSV in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with CSV in JavaScript/package.json -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with JSON in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with JSON in JavaScript/app.js -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with JSON in JavaScript/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with JSON in JavaScript/config.json -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with TOML in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with TOML in JavaScript/app.js -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with TOML in JavaScript/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with TOML in JavaScript/config.toml -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with TOML in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with TOML in JavaScript/package.json -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with XLSX in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with XLSX in JavaScript/app.js -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with XLSX in JavaScript/file-example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with XLSX in JavaScript/file-example.xlsx -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with XLSX in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with XLSX in JavaScript/package.json -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with XML in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with XML in JavaScript/app.js -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with XML in JavaScript/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with XML in JavaScript/data.xml -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with XML in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with XML in JavaScript/package.json -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with YAML in JavaScript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with YAML in JavaScript/app.js -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with YAML in JavaScript/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with YAML in JavaScript/data.yaml -------------------------------------------------------------------------------- /Working with data in JavaScript/Working with YAML in JavaScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VLabStudio/Tutorials/HEAD/Working with data in JavaScript/Working with YAML in JavaScript/package.json --------------------------------------------------------------------------------