lsekfe 发表于 2021-5-7 10:45:56

教你在Linux中用TypeScript给自己开个小空调

在Github上看到一个很有趣的TypeScript项目,炎炎夏日马上要到了,希望它能让你精神一振,工作效率加倍。
  Linux搭建NodeJs环境
  Linux安装NodeJs和Npm。在https://nodejs.org/zh-cn/download/ 页面下载NodeJs的Linux安装包:

  $ wget https://nodejs.org/dist/v14.16.0/node-v14.16.0-linux-x64.tar.xz
  $ tar xvf node-v14.16.0-linux-x64.tar.xz
  $ mv node-v14.16.0-linux-x64 /usr/local/node

  创建软连接

  $ cd /usr/bin
  $ ln -s /usr/local/node/bin/node node
  $ ln -s /usr/local/node/bin/npm npm

  输入命令 node -v,npm -v 检测是否安装成功
http://www.51testing.com/attachments/2021/04/15326880_202104291031491nZ4i.png
  国内可能需要cnpm,根据需要安装。

  $ npm install -g cnpm --registry=https://registry.npm.taobao.org
  $ cd /usr/bin
  $ ln -s /usr/local/node/lib/node_modules/cnpm/bin/cnpm cnpm
  $ npm install npm run build & npm run start

  下载TypeScript项目

  $ git clone https://github.com/YunYouJun/air-conditioner

http://www.51testing.com/attachments/2021/04/15326880_202104291032011zfBK.png
  运行TS项目
  Centos放行npm的3000端口

  $ firewall-cmd --zone=public --add-port=3000/tcp --permanent
  $ firewall-cmd --reload


  进入项目目录用npm安装依赖

  $ cd air-conditioner/
  $ npm install


http://www.51testing.com/attachments/2021/04/15326880_202104291032111C2ot.pnghttp://www.51testing.com/attachments/2021/04/15326880_202104291032471ZMVg.png
  使用npm或者cnpm运行项目

  $ npm start

  或者

  cnpm run start
http://www.51testing.com/attachments/2021/04/15326880_2021042910331214s0w.png
  图片惊喜来了,请戴上耳机,点击空调开关按钮,感受一下他给你带来的短暂凉风,访问效果:https://kt.web.vg

页: [1]
查看完整版本: 教你在Linux中用TypeScript给自己开个小空调