Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jecyu/learn-js-demo
💻JS 学习
https://github.com/jecyu/learn-js-demo
Last synced: 13 days ago
JSON representation
💻JS 学习
- Host: GitHub
- URL: https://github.com/jecyu/learn-js-demo
- Owner: jecyu
- Created: 2019-11-11T11:20:52.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T15:57:37.000Z (almost 2 years ago)
- Last Synced: 2023-03-06T01:08:49.305Z (over 1 year ago)
- Language: HTML
- Homepage:
- Size: 668 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript 学习
JS 学习路上遇到的一些问题 demo 总结。
## 运行例子
### 前端文件
请全局安装 `live-server`
```bash
yarn add live-server global
```然后进入根目录,运行前端文件
```bash
live-server
```### 后端文件
关于需要启动后端的文件,直接在对应的文件夹下运行,确保先安装好 node.js。
```
node xxx.js
```停止运行 `ctrl + c`