How to build a mini program background service in Node.js
Recently I am developing a WeChat application account applet. The background data interface of the applet requires https secure request, so my nodejs server needs to be able to provide https support. Now I will talk about the entire https server building process
Preparation conditions
One server
SSL certificate, the mini program requires https protocol
Server background
Node.js
express
mongodb
pm2
The following takes Tencent Cloud Host (centos) as an example
Install Node.js
yum install nodejs
You can also install nvm and use nvm to manage the nodejs version
Install git
yum install git
Connect to the remote code base
Take github as an example:
Configure user Information
git config --global user.name youname git config --global user.email youemail
Generate ssh public key
ssh -keygen -t rsa -C youemail
The default generated directory is/ root/.ssh
Find the id_rsa.pub file in the directory, copy the contents, and add ssh to your github
Install mongodb and client shell
yum install mongodb-server mongodb -y
Create the database file storage directory
mkdir -p /data/mongodb mkdir -p /data/logs/mongodb
Start the mongodb database service
mongod --fork --dbpath /data/mongodb --logpath /data/logs/youlog.log
Note:
If you add after the command when starting the mongodb service --auth will enable authentication.
It is recommended to enable authentication. If you do not hold a meeting, you will easily be hacked.
--port 12345 can change the port number of the database, the default is 27017.
--fork starts the database service as a daemon process.
--dbpath /data/mongodb specifies the directory where the database files are stored.
--logpath /data/logs/youlog.log Specifies the log file directory.
The configuration file of mongodb is in /etc/mongod.conf by default
Start the client shell
mongo //Start the mongodb client shell default connection test database
You can switch database connections and perform related operations in the shell.
After the cloud server starts the database service as a daemon, close the terminal and the service will not be terminated. So there is no need to start the database service next time, just connect directly.
Close the database service
mongod --shutdown (--dbpath /data/mongodb)
If added at startup If dbpath is not the default /data/db, dbpath should also be added when closing the database service.
Create https service
npm init //Project initialization
Install express
npm install express --save
Implementing a simple https server
const https = require('https'); const fs = require('fs'); const express = require('express'); const app = express(); let key = fs.readFileSync('youssl.key'); let cert = fs.readFileSync('youssl.crt'); let options = { key : key, cert : cert }; const httpsServer = https.createServer(options,app); httpsServer.listen(443, () => { console.log('listening 443 port'); }); app.get('/',(req, res, next) => { console.log('someone request'); });
.key and .cert files are your ssl authentication files, using Tencent Cloud Host For example, you can have a free 1-year ssl certificate.
Use mongoose to operate the database
npm install mongoose --save const mongoose = require('mongoose'); mongoose.connect('mongodb://127.0.0.1/dbname'); //连接数据库 const connection = mongoose.connection; connection.once('open', (err) => { if(err){ console.log('Database connection failure'); }else{ console.log('Database opened'); } }); const Schema = mongoose.Schema; const YourSchema = new Schema({ name : String, age : Number, }); const yourModel = mongoose.model('yourtable', YourSchema); //在数据库中对应的表为yourtables let yourDoc = new yourModel({ name : 'yourname', age : 18, });
Note that if you add --auth when starting the mongodb database service, you must add an authenticated account when using mongoose to connect to the database
mongoose.connect('mongodb://youraccount:pwd@127.0.0.1/dbname');
The corresponding relationship between mongodb and relational database
Schema is equivalent to the structure of the table. It can predefine the field types of the document and cannot perform database operations. Modle can perform a series of database operations, equivalent to tables. An instance of Model is equivalent to a row of the table.
Use pm2
Install pm2
npm install -g pm2
Start the application
pm2 start app.js
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
How to compile, package and view the index file in vue
How to use Jade template in vue
Passing templates to components in Angular
The above is the detailed content of How to build a mini program background service in Node.js. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Node.js is a server-side JavaScript runtime, while Vue.js is a client-side JavaScript framework for creating interactive user interfaces. Node.js is used for server-side development, such as back-end service API development and data processing, while Vue.js is used for client-side development, such as single-page applications and responsive user interfaces.

Node.js can be used as a backend framework as it offers features such as high performance, scalability, cross-platform support, rich ecosystem, and ease of development.

To connect to a MySQL database, you need to follow these steps: Install the mysql2 driver. Use mysql2.createConnection() to create a connection object that contains the host address, port, username, password, and database name. Use connection.query() to perform queries. Finally use connection.end() to end the connection.

The following global variables exist in Node.js: Global object: global Core module: process, console, require Runtime environment variables: __dirname, __filename, __line, __column Constants: undefined, null, NaN, Infinity, -Infinity

There are two npm-related files in the Node.js installation directory: npm and npm.cmd. The differences are as follows: different extensions: npm is an executable file, and npm.cmd is a command window shortcut. Windows users: npm.cmd can be used from the command prompt, npm can only be run from the command line. Compatibility: npm.cmd is specific to Windows systems, npm is available cross-platform. Usage recommendations: Windows users use npm.cmd, other operating systems use npm.

The main differences between Node.js and Java are design and features: Event-driven vs. thread-driven: Node.js is event-driven and Java is thread-driven. Single-threaded vs. multi-threaded: Node.js uses a single-threaded event loop, and Java uses a multi-threaded architecture. Runtime environment: Node.js runs on the V8 JavaScript engine, while Java runs on the JVM. Syntax: Node.js uses JavaScript syntax, while Java uses Java syntax. Purpose: Node.js is suitable for I/O-intensive tasks, while Java is suitable for large enterprise applications.

Yes, Node.js is a backend development language. It is used for back-end development, including handling server-side business logic, managing database connections, and providing APIs.

Node.js and Java each have their pros and cons in web development, and the choice depends on project requirements. Node.js excels in real-time applications, rapid development, and microservices architecture, while Java excels in enterprise-grade support, performance, and security.
