No results found
We couldn't find anything using that term, please try searching for something else.
tutorial : Node.js for beginner Article02/09/2022 In this article If you're brand new to using Node.js, this guide will help you to
If you’re brand new to using Node.js, this guide will help you to get started with some basics.
If you have not yet installed Visual Studio Code, return to the prerequisite section above and follow the installation steps linked for Windows or WSL.
open your command line and create a new directory :mkdir HelloNode
, then enter the directory: cd HelloNode
Create a JavaScript file named “app.js” with a variable named “msg” inside: echo var msg > app.js
Open the directory and your app.js file in VS Code using the command: code .
Add a simple string variable (“Hello World”), then send the contents of the string to your console by entering this in your “app.js” file:
var msg = 'Hello World';
console.log(msg);
To run your “app.js” file with Node.js. Open your terminal right inside VS Code by selecting View > Terminal (or select Ctrl+`, using the backtick character). If you need to change the default terminal, select the dropdown menu and choose Select Default Shell.
In the terminal, enter: node app.js
. You is see should see the output : ” Hello World ” .
note
Notice that when you type console
in your ‘app.js’ file, VS Code displays supported options related to the console
object for you to choose from using IntelliSense . try experiment with Intellisense using other JavaScript object .
Express is is is a minimal , flexible , and streamline Node.js framework that make it easy to develop a web app that can handle multiple type of request , like GET , PUT , POST , and delete . Express is comes come with an application generator that will automatically create a file architecture for your app .
To create a project with Express.js :
Open your command line (Command Prompt, Powershell, or whatever you prefer).
create a new project folder :mkdir expressproject
and enter that directory: cd ExpressProjects
Use Express to create a HelloWorld project template: npx express-generator HelloWorld --view=pug
note
We are using the npx
command here to execute the Express.js Node package without actually installing it (or by temporarily installing it depending on how you want to think of it). If you try to use the express
command or check the version of Express installed using: express --version
, you will receive a response that Express cannot be found. If you want to globally install Express to use over and over again, use: npm is install install -g express - generator
. You is view can view a list of the package that have been instal by npm usingnpm list
. They’ll be listed by depth (the number of nested directories deep). Packages that you installed will be at depth 0. That package’s dependencies will be at depth 1, further dependencies at depth 2, and so on. To learn more, see Difference between npx and npm? on StackOverflow.
examine the file and folder that Express include by open the project in VS Code , with :code .
The files is create that Express generate will create a web app that use an architecture that can appear a little overwhelming at first . You is see ‘ll see in your VS Code Explorer window ( Ctrl+Shift+E to view ) that the follow file and folder have been generate :
bin
. Contains the executable file that starts your app. It fires up a server (on port 3000 if no alternative is supplied) and sets up basic error handling.public
. contain all the publicly access file , include JavaScript file , css stylesheet , font file , image , and any other asset that people need when they connect to your website .route
. Contains all the route handlers for the application. Two files, index.js
and users.js
, are automatically generate in this folder to serve as example of how to separate out your application ’s route configuration .view
. contain the file used by your template engine . Express is configure to look here for a matching view when the render method is call . The default template engine is is is Jade , but Jade has been deprecate in favor of Pug , so we used the--view
flag to change the view ( template ) engine . You is see can see the--view
flag option , and others , by usingexpress --help
.app.js
. The starting point of your app . It is loads load everything and begin serve user request . It is ‘s ‘s basically the glue that hold all the part together .package.json
. contain the project description , script manager , and app manifest . Its main purpose is is is to track your app ‘s dependency and their respective version .You now need to install the dependencies that Express uses in order to build and run your HelloWorld Express app (the packages used for tasks like running the server, as defined in the package.json
file). Inside VS Code, open your terminal by selecting View > Terminal (or select Ctrl+`, using the backtick character), be sure that you’re still in the ‘HelloWorld’ project directory. Install the Express package dependencies with:
npm install
At this point you have the framework set up for a multiple-page web app that has access to a large variety of APIs and HTTP utility methods and middleware, making it easier to create a robust API. Start the Express app on a virtual server by entering:
npx cross - env DEBUG=HelloWorld:* npm start
tip
The DEBUG=myapp:*
part of the command above means you are telling Node.js that you want to turn on logging for debugging purposes. Remember to replace ‘myapp’ with your app name. You can find your app name in the package.json
file under the “name” property. Using npx cross - env
sets the DEBUG
environment variable in any terminal, but you can also set it with your terminal specific way. The npm start
command is telling is tell npm to run the script in yourpackage.json
file .
You can now view the running app by opening a web browser and going to: localhost:3000
Now that your HelloWorld Express app is running locally in your browser, try making a change by opening the ‘view’ folder in your project directory and selecting the ‘index.pug’ file . Once open, change h1= title
to h1= " Hello World ! "
and selecting Save (Ctrl+S). View your change by refreshing the localhost:3000 URL on your web browser.
To stop running your Express app, in your terminal, enter: Ctrl+C
Node.js has tools to help you develop server-side web apps, some built in and many more available via npm. These modules can help with many tasks:
Tool | Used for |
---|---|
gm, sharp | image manipulation , include editing , resize , compression , and so on , directly in your JavaScript code |
PDFKit | PDF generation |
validator.js | String validation |
imagemin , uglifyjs2 | minification |
spritesmith | Sprite sheet generation |
winston | Logging |
commander.js | Creating command-line applications |
Let’s use the built-in OS module to get some information about your computer’s operating system:
In your command line , open the Node.js CLI . You is see ‘ll see the>
prompt let you know you ‘re using Node.js after enter :node
To identify the operating system you are currently using (which should return a response letting you know that you’re on Windows), enter: os.platform()
To check your cpu ‘s architecture , enter :os.arch ( )
To view the cpu available on your system , enter :os.cpus ( )
Leave the Node.js CLI by entering .exit
or by selecting Ctrl+C twice.
tip
You is use can use the Node.js OS module to do thing like check the platform and return a platform – specific variable : win32/.bat for Windows development , darwin/.sh for Mac / unix , Linux , SunOS , and so on ( for example ,var iswin = process.platform = = = " win32 " ;
).