如何在node / express项目

时间:2016-11-30 13:21:41

标签: node.js express angular mean-stack typescript-typings

我从tsd和后来的打字开始,我们必须从这些来源安装并在服务器文件中提供引用,但现在我们可以获得带有@ types / filename的声明文件,我不知道为什么我们从tsd迁移和打字,现在我们在@types。

如何将这些声明文件用于我的平均项目中,我不知道如何导入或如何使其具有功能并获取智能和类型检查。

我的项目,服务器和客户端有2个文件夹,客户端有角度和所有前端的东西,服务器文件夹(关于节点)有package.json,server.ts,node_modules和tsconfig文件,这里是tsconfig文件和server.ts:它的抛出错误找不到模块@ types / express

{
"compilerOptions": {
    "target": "ES5",
    "module": "commonjs",
    "typeRoots" : ["./node_modules/@types"],
    "moduleResolution": "node"
}
}

import * as express from "@types/express";
var app = express();

app.get('/', function (req, res) {
 res.send('Hello World!')
})

app.listen(3000, function () {
console.log('Example app listening on port 3000!')
})

这是package.json:

{
"name": "server",
"version": "1.0.0",
"description": "quiz application backend",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.0.34",
"express": "^4.14.0"
}
}

1 个答案:

答案 0 :(得分:0)

使用TypeScript 2,您只需通过 npm 安装打字:

npm install @types/lodash --save

并开始在 ts 文件中使用它:

import * as _ from "lodash";
_.padStart("Hello TypeScript!", 20, " ");

Intellisense等可以使用,不需要旧的/// <reference path="..." />语法。