服务器正在运行,但无法访问本地主机

时间:2019-05-30 02:25:29

标签: typescript express ts-node

import express, { Application, Request, Response, NextFunction } from 'express';

const app: Application = express();

const add = (a: number, b: number): number => a + b;

app.get('/', (req: Request, res: Response) => {
    console.log(add(5, 5));
    res.send('hello');
})

app.listen(3000, () => console.log('server running'));

当我通过

启动服务器时
  

npm run dev

我得到以下信息:

  

project@1.0.0开发人员/ Users / someone / projects / notes / typescript / project

     

nodemon src / app.ts

     

[nodemon] 1.19.1

     

[nodemon]要随时重新启动,请输入rs

     

[nodemon]观看:

     

[nodemon]以ts-node src/app.ts开头

     

服务器正在运行

但是,当我尝试访问localhost:5000时,出现错误消息:无法访问此站点,Localhost拒绝连接。

0 个答案:

没有答案