- What's the front-end (client side)?
- Browser
- User interface
- Html, CSS, Javascript
- What's the back-end (server-side)?
- what's going on behind the scenes
- data transactions/business logic
- C - sign up for a facebook account
- R - display all of your facebook friends
- U - change your facebook password
- D - delete your facebook account
- Why do we need a back-end?
- efficiency and security
- lighten up front end load
- manage data securely
- efficiency and security
Node is a platform that uses JavaScript for creating network applications.
But wait! Isn't Javascript is a front-end language written for browsers? Yes! This is the beauty of Node. It gives us a server-side environment that can handle logic written in Javascript. It allows JavaScript to be run on a server.
We'll see that there are functions and patterns unique to Node (for example, the require
function in Node, which is not available in the browser).
We will use Homebrew to install Node via the command line.
brew update
brew install node
node -v
mkdir my-first-node-proj
Open the folder in your favorite text editor.
(check the command line prompt to make sure you're actually inside the project folder)
npm init
You will be prompted to enter values for a number of fields to set up the node project. You can just press enter to accept the default value, or enter specific values if you'd like.
To skip this step in the future (and accept all default values at once), type npm init -y
.
Take a look at the package.json
file that was just created. This is where the values we just set up via npm init
are stored. This is like your settings file. You can edit these values by changing them in this file (make sure to save).
Unless you specified a different file name in setup (check the main
value in package.json
), Node will look for a file called index.js
as the entry point for running your project. This file holds the code to be executed - this is the heart of your program. Create this file now.
touch index.js
Let's write some code in here and run it to see Node in action! Write the following line to your index.js
:
console.log("Hello world!")
To run a file in node via the command line, type node [file name here]
.
node index.js
Congratulations, you've created and run your first Node program! Let's learn more about how Node is used in the wild (and eventually, in the web-development context).