search
HomeWeb Front-endJS TutorialTeach you step by step how to deploy a TS Node.js project correctly and quickly!

How to deploy a TS Node.js project correctly and quickly? The following article will teach you how to deploy a TS Node.js application in a few minutes. I hope it will be helpful to you!

Teach you step by step how to deploy a TS Node.js project correctly and quickly!

As a full-stack developer, it is very interesting to create projects. You can design the architecture, brainstorm, and develop, but after the development is completed, we have to deploy or release application. So how to deploy a TS Node.js project correctly and quickly? Let’s get it done today. [Recommended learning: "nodejs Tutorial"]

Create a TS Node.js application

If you are already familiar with creating a TS Node.js project , you can jump directly to the "Deploy and Release Application" section

Initialize the Node.js project:

In our team, we really like TS and use it in all our new projects TS is used in every project, so creating a TS project is nothing new.

Let’s start with the basics:

  • npm init Initialize a Node.js project using -y Parameters can quickly skip step-by-step configuration

  • ##npm install express @types/express Install express dependencies, and express types file for TS development

  • npm install typescript --save-dev Install typescript as a development dependency

  • mkdir my-app && cd my-app
    npm init -y
    npm install express @types/express --save
    npm install typescript --save-dev

TS configuration

  • npx tsc --init will create a typescript default configuration file tsconfig.json
  • declaration used to specify whether to compile After completion, the corresponding *.d.ts file is generated. The default is false
  • outdir Define the directory after TS compilation. If there is no declaration, the default compiled file location will be the same as the ts source file. In the same location
Run the command

 npx tsc --init

Modify the following configuration

"compilerOptions": {
  ...
  "outDir": "dist", // 编译后输出目录
  "declaration": true // 生成 d.ts
}

Create the project entry file

Create

server.tsFile

import express from 'express'
const app = express()
const PORT = 3000

app.use(express.json())

app.get('/', (req, res) => {
  res.send(‘Hello World!’)
})

app.listen(PORT, () => {
  console.log(`Server is listening on port ${PORT}`)
})

After completing the above steps, our file directory structure is as follows

.
├── node_modules
├── package-lock.json
├── package.json
├── server.ts
└── tsconfig.json

Compile TS

Our next step is to build and deploy our TS Node.js application. Since in the production environment, we do not run the TS version, but the compiled JS. Now let’s compile the project

Modify the package.json file and add the following command

  • npm run tsc will be compiled according to the configuration of our tsconfig.json Our project and output to the specified directory

  • ##npm run start:prod

    will run our compiled JS file

    "scripts": {
      "tsc": "tsc",
      "start:prod": "node dist/server.js"
    }
  • Then test locally
npm run tsc
npm run start:prod

# 服务启动成功,运行端口:3000

Access http://localhost:3000/ through the browser, the access is successful, then we deploy and publish our application

Teach you step by step how to deploy a TS Node.js project correctly and quickly!

Deploy and publish applications

Here we mainly use two methods to distribute and deploy the compiled TS project to various environments

The form of npm dependency package
  • docker container method
The form of NPM dependency package

NPM life cycle hook

Some special life cycle hooks will be triggered when the specified operation is triggered. Here we will use the "prepare" hook, which will be triggered once before executing the npm publish command to publish to NPM. So we can compile the TS application at this time.

Specify publishing files

Through the "files" field we can define which files should be included when publishing the NPM package. If this attribute is omitted, the default will be ["*" ], all files will be uploaded.

The following is the modified package.json

"name": "my-app-xiaoshuai", // 我们发布到NPM上的名字
"main": "dist/server.js", // 修改入口文件地址
"types": "dist/server.d.ts", // 指定TS类型文件
"files": [
  "dist",
  "package.json",
  "package-lock.json",
  "README.md"
],
"scripts": {
  "tsc": "tsc",
  "prepare": "npm run tsc"  // 编辑typescript
}

npm publish

After modifying the package.json configuration, we run the npm publish command, Publish our application to NPM

npm publish

Output

Teach you step by step how to deploy a TS Node.js project correctly and quickly!After successful publishing, you can see that there is an additional

my-app- on npmjs xiaoshuai

Package

Teach you step by step how to deploy a TS Node.js project correctly and quickly!

Docker container method

To publish our TS Node.js application as a container, we need Create a docker configuration file Dockerfile in the project root directory.

Let’s write the Dockerfile step by step

    Copy the compiled file into the container
  • Copy package.json and package-lock.json into the container
  • Use
  • npm install

    Install dependencies

  • Use
  • node build/ server.js

    Run our application

# Node 版本
FROM node:14.18.0-alpine

ARG NODE_ENV=production
ENV NODE_ENV $NODE_ENV

COPY ./dist /dist
COPY ./package.json /package.json
COPY ./package-lock.json /package-lock.json

RUN NODE_ENV=$NODE_ENV npm install

EXPOSE 3000

CMD ["node", "dist/server.js"]

现在我们可以在根目录中构建docker镜像,运行 docker build --tag my-app:test . 命令

docker build --tag my-app:test .

成功后输出如下

Teach you step by step how to deploy a TS Node.js project correctly and quickly!

接着我们运行容器,使用docker run -p 3000:3000 -it my-app:test命令来运行我们的应用,可以看到程序成功运行在3000端口

docker run -p 3000:3000 -it my-app:test
# 服务启动成功,运行端口:3000

通过浏览器访问http://localhost:3000/,访问成功

Teach you step by step how to deploy a TS Node.js project correctly and quickly!

源码

https://github.com/cmdfas/ts-node-express-deploy

总结

今天我们介绍了创建TS Node.js项目和部署它的基础知识,希望对大家有所帮助,能够用在现在或未来的项目中。

更多编程相关知识,请访问:编程视频!!

The above is the detailed content of Teach you step by step how to deploy a TS Node.js project correctly and quickly!. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
Vue3+TS+Vite开发技巧:如何进行SEO优化Vue3+TS+Vite开发技巧:如何进行SEO优化Sep 10, 2023 pm 07:33 PM

Vue3+TS+Vite开发技巧:如何进行SEO优化SEO(SearchEngineOptimization)是指通过优化网站的结构、内容和关键词等方面,使其在搜索引擎的排名更靠前,从而增加网站的流量和曝光度。在Vue3+TS+Vite等现代前端技术的开发中,如何进行SEO优化是一个很重要的问题。本文将介绍一些Vue3+TS+Vite开发的技巧和方法,帮

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

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

Vue3之getCurrentInstance与ts怎么结合使用Vue3之getCurrentInstance与ts怎么结合使用May 15, 2023 pm 10:37 PM

getCurrentInstance与ts结合使用vue3项目中,如果不用ts这样使用是没问题的const{proxy}=getCurrentInstance()在ts中使用会报错:报错:...类型“ComponentInternalInstance|null”我们在项目中一般会用到很多getCurrentInstance()方法,直接封装一下创建useCurrentInstance.ts文件:import{ComponentInternalInstance,getCurrentInstance

Vue3+TS+Vite开发技巧:如何进行数据加密和存储Vue3+TS+Vite开发技巧:如何进行数据加密和存储Sep 10, 2023 pm 04:51 PM

Vue3+TS+Vite开发技巧:如何进行数据加密和存储随着互联网技术的快速发展,数据的安全性和隐私保护变得越来越重要。在Vue3+TS+Vite开发环境下,如何进行数据加密和存储,是每个开发人员都需要面对的问题。本文将介绍一些常用的数据加密和存储的技巧,帮助开发人员提升应用的安全性和用户体验。一、数据加密前端数据加密前端加密是保护数据安全性的重要一环。常用

Vue3+TS+Vite开发技巧:如何进行跨域请求和网络请求优化Vue3+TS+Vite开发技巧:如何进行跨域请求和网络请求优化Sep 09, 2023 pm 04:40 PM

Vue3+TS+Vite开发技巧:如何进行跨域请求和网络请求优化引言:在前端开发中,网络请求是非常常见的操作。如何优化网络请求以提高页面加载速度和用户体验是我们开发者需要思考的问题之一。同时,对于一些需要向不同域名发送请求的场景,我们需要解决跨域问题。本文将介绍如何在Vue3+TS+Vite开发环境下进行跨域请求以及网络请求的优化技巧。一、跨域请求解决方案使

Vue3+TS+Vite开发技巧:如何进行前端安全防护Vue3+TS+Vite开发技巧:如何进行前端安全防护Sep 09, 2023 pm 04:19 PM

Vue3+TS+Vite开发技巧:如何进行前端安全防护随着前端技术的不断发展,越来越多的企业和个人开始使用Vue3+TS+Vite进行前端开发。然而,随之而来的安全风险也引起了人们的关注。在本文中,我们将探讨一些常见的前端安全问题,并分享一些在Vue3+TS+Vite开发过程中如何进行前端安全防护的技巧。输入验证用户的输入往往是前端安全漏洞的主要来源之一。在

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

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

vue3获取ref实例结合ts的InstanceType问题怎么解决vue3获取ref实例结合ts的InstanceType问题怎么解决May 20, 2023 pm 10:59 PM

vue3获取ref实例结合ts的InstanceType有时候我们模板引用,但是在使用的时候,ts提示却不行,没有提示组件通过defineExpose暴露的方法名称,虽然这不是很影响,但是可以解决还是可以解决下~import{ref}from'vue'constsayHello=()=>(console.log('我会说hello'))defineExpose({sayHello})然后我们在父级使用,输入完成MyModalR

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version