# newweb **Repository Path**: chopin406/newweb ## Basic Information - **Project Name**: newweb - **Description**: 各种web页面技术 - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-11-11 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 概述 使用node.js快速开发web应用,学习和示范各种前段开发组件,寻找最佳实践。 # 安装 1. node.js 1. python 1. visual studio code # 启动 ## node命令启动 `node http.js` ## python脚本启动 `python pid.py` ## 停止node.js linux或者mac os ``` lsof -i:8800 kill -9 #PID ``` 或者 ``` netstat -an|grep 8800 ``` windows ``` netstat -an|findstr 8800 ``` 快捷键关闭 ctrl+c