search
HomeWeb Front-endJS TutorialSummarize some modules commonly used in Nodejs development

This article will introduce to you some modules commonly used in Nodejs development. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

Summarize some modules commonly used in Nodejs development

Collects some modules commonly used in NodeJS development.

MVC Framework - Express

##Express is a lightweight and flexible Nodejs web application framework that can be quickly built website. The Express framework is built on the built-in Http module of Nodejs and repackages the Http module to implement the function of Web request processing. It supports a variety of front-end templates, such as Jade, EJS, etc. It is the work of T.J., but it has been maintained by other teams. [Related recommendation: "

nodejs Tutorial"]

Koa is another work of T.J. It is known as the next generation NodeJS web framework. Using koa to write web applications, by combining different generators, you can avoid repeated and cumbersome callback function nesting, and greatly improve the efficiency of common error handling. Koa does not bind any middleware in the kernel method. It only provides a lightweight and elegant function library that makes writing web applications easy. It should be noted that koa relies on the Node environment that supports generators. To be precise, it is the environment of node >= 0.11.9. After the installation is complete, you should make sure to run the program using $ node app.js --harmony or (--harmony-generators) i.e., harmony mode. Personally, I feel that if it is a formal product, it is more reliable to use Express.

Rest Development- Restify##restify is a REST application framework based on Nodejs, supporting server and client . Restify is more focused on REST services than express, removing the template, render and other functions in express. At the same time, it strengthens the use of REST protocol, versioning support, and HTTP exception handling.

hapi

is a rich framework for building Node.js-based applications and services, allowing developers to focus on portable and reusable application logic rather than building architecture. It has built-in input validation, caching, authentication and other functions commonly used in web application development. It is also a good choice for developing rest code.

Front-end template -

EJS##EJS is a powerful and easy-to-use front-end template. Express is very suitable for EJS The support is relatively good, and its syntax is closer to how front-end developers use it. In addition, the more famous front-end template is Jade

, which was developed by the same author as Express. Express uses the Jade template by default, but its syntax is closer to the syntax of the back-end language, and there are many front-end developers. It's hard to get used to, but it's really powerful.

Database driver -

Mongoose##MongoDB and NodeJS should be the best partners, and Mongoose is the object model tool of MongoDB. Through the Mongoose framework, you can perform very convenient operations to access MongoDB. Of course, if you have very high performance requirements, you can also consider using

mongodb

, which has relatively few functions and is relatively low-level. In fact, Mongoose is built on it. Others: redis,

mysql

. Web Socket -

Socket.IOOne of the main advantages of NodeJS is high concurrency, so NodeJS is Web Socket The ideal choice for servers, and Socket.IO is the best choice for Socket modules, which can be used to build chat rooms, customer service systems, etc. Socket.IO not only provides server-side code, but also provides front-end JS code, which makes Web Socket development very convenient. At the same time, it is compatible with browsers that do not support Web Socket.

Log management- Log4js

is similar to log4j in JAVA, with functions such as colored console logging and the ability to set output levels. Simple and easy to use, enough to use if there are no complex requirements. winston is a log module with more powerful and complex functions. It is relatively popular. Those who are pursuing functions can take a look at this module.

HTTP call Request

can be understood as a simplified CURL module that establishes various HTTP requests and supports authorization Verification, in fact, there are still many functions, which basically meet most needs. Currently among the top NPM modules.

Asynchronous process control - Async

##The large number of asynchronous callback nesting in NodeJS is estimated to give many people a headache, especially When multiple asynchronous functions require a certain calling sequence, the code gets out of control. Async can solve these problems very well. It can synchronize the asynchronous process.

Q is another very good choice, it implements the promises interface.

Deployment- forever

#forever

can be seen as a nodejs daemon. Able to start, stop, and restart our app application, run stably, support high concurrency, simple start/stop commands, support hot deployment, restart after downtime, monitoring interface and logs, and cluster environment. pm2 is a process manager for Node applications with load balancing function. When you want your standalone code to utilize all CPUs on all servers and keep the process alive, 0 second reloads. If you want to solve the NodeJS server management problem from the operating system level, you can refer to:

Linux system service upstart

Of course you can use

supervisor during development

Start the service, which can monitor files and automatically restart the service when there are file updates. In fact, Forever also has this function.

Project Management

grunt

is an automated build tool for tasks that need to be repeated over and over again, such as minification, compilation, and units. For testing, linting, etc., automated tools can reduce your labor and simplify your work. When you configure the task correctly, the task runner will automatically complete most of the boring work for you or your team. And it has a large number of plug-ins available. I mainly use it for front-end automated processing.

bower

is another open source project of Twitter, developed using nodejs and used for web package management. As a js dependency management tool, it provides an ideal package management method, using some ideas of npm, to provide us with a comfortable development environment.

yeoman

was developed by Google's team in collaboration with a team of external contributors. Its goal is to use Grunt (a command line tool for automating development tasks) and Bower (an HTML, A package manager for front-end resources such as CSS, Javascript, and images) that creates an easy-to-use workflow for developers. The purpose of Yeoman is not only to establish workflows for new projects, but also to solve many serious problems faced by front-end development, such as scattered dependencies.

Scheduled tasks -

Cron##cron is a small scheduled task management module that can satisfy most of our needs Requirements, it supports standard cron patterns, and you can easily get started if you are familiar with the syntax of Linux cron tab.

Another well-known and powerful timing module is

Later

. It can be used for those with higher functional requirements. The disadvantage of later is that it is a bit complicated. Unlike cron, it only needs to be used. Will use it.

Toolkit

underscore is a JS tool library that mainly provides some basic tool functions for arrays, objects, functions, etc., which can be used in the browser at the same time and run in NodeJS environment. Recommended for use in every project.

moment is a date tool library that mainly provides parsing, verification, operation and formatting of dates. If you need to perform more operations or more complex operations on dates, Then it is a good choice, after all, the Date function that comes with JS is too weak.

Connect is a collection of middleware, including log, session, cookie, body parser, etc. It does a lot of basic work related to HTTP, and the Express framework relies on it. carrying out work.

Unit Test

Mocha,Karma,Jasmine.

For more programming related knowledge, please visit: Programming Video! !

The above is the detailed content of Summarize some modules commonly used in Nodejs development. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
node、nvm与npm有什么区别node、nvm与npm有什么区别Jul 04, 2022 pm 04:24 PM

node、nvm与npm的区别:1、nodejs是项目开发时所需要的代码库,nvm是nodejs版本管理工具,npm是nodejs包管理工具;2、nodejs能够使得javascript能够脱离浏览器运行,nvm能够管理nodejs和npm的版本,npm能够管理nodejs的第三方插件。

Vercel是什么?怎么部署Node服务?Vercel是什么?怎么部署Node服务?May 07, 2022 pm 09:34 PM

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node爬取数据实例:聊聊怎么抓取小说章节node爬取数据实例:聊聊怎么抓取小说章节May 02, 2022 am 10:00 AM

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

node导出模块有哪两种方式node导出模块有哪两种方式Apr 22, 2022 pm 02:57 PM

node导出模块的两种方式:1、利用exports,该方法可以通过添加属性的方式导出,并且可以导出多个成员;2、利用“module.exports”,该方法可以直接通过为“module.exports”赋值的方式导出模块,只能导出单个成员。

安装node时会自动安装npm吗安装node时会自动安装npm吗Apr 27, 2022 pm 03:51 PM

安装node时会自动安装npm;npm是nodejs平台默认的包管理工具,新版本的nodejs已经集成了npm,所以npm会随同nodejs一起安装,安装完成后可以利用“npm -v”命令查看是否安装成功。

聊聊V8的内存管理与垃圾回收算法聊聊V8的内存管理与垃圾回收算法Apr 27, 2022 pm 08:44 PM

本篇文章带大家了解一下V8引擎的内存管理与垃圾回收算法,希望对大家有所帮助!

聊聊Node.js path模块中的常用工具函数聊聊Node.js path模块中的常用工具函数Jun 08, 2022 pm 05:37 PM

本篇文章带大家聊聊Node.js中的path模块,介绍一下path的常见使用场景、执行机制,以及常用工具函数,希望对大家有所帮助!

node中是否包含dom和bomnode中是否包含dom和bomJul 06, 2022 am 10:19 AM

node中没有包含dom和bom;bom是指浏览器对象模型,bom是指文档对象模型,而node中采用ecmascript进行编码,并且没有浏览器也没有文档,是JavaScript运行在后端的环境平台,因此node中没有包含dom和bom。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!