mirror of
https://github.com/gnu4cn/ts-learnings.git
synced 2024-12-26 12:50:31 +08:00
Update README.md
This commit is contained in:
parent
27783b1671
commit
bde1b9c0b2
27
README.md
27
README.md
@ -23,6 +23,8 @@ ECMAScript 2015 (ES6)已经正式发布,所有浏览器均已支持,同时
|
|||||||
|
|
||||||
+ 2019-3-27, 重新整理`package.json`、`tsconfig.json`与`gulpfile.js`文件,让`.gitignore`生效,令到项目大小得以缩小
|
+ 2019-3-27, 重新整理`package.json`、`tsconfig.json`与`gulpfile.js`文件,让`.gitignore`生效,令到项目大小得以缩小
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 在本地阅读
|
## 在本地阅读
|
||||||
|
|
||||||
在本地阅读本书,需要安装 `mdbook` 程序。根据操作系统的不同,安装 `mdbook` 程序有所不同。
|
在本地阅读本书,需要安装 `mdbook` 程序。根据操作系统的不同,安装 `mdbook` 程序有所不同。
|
||||||
@ -31,28 +33,34 @@ ECMAScript 2015 (ES6)已经正式发布,所有浏览器均已支持,同时
|
|||||||
### 在 Linux 系统上
|
### 在 Linux 系统上
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
$ cargo install mdbook
|
cargo install mdbook
|
||||||
```
|
```
|
||||||
|
|
||||||
### 在 Windows 上
|
### 在 Windows 上
|
||||||
|
|
||||||
|
在 “Powershell(管理员)”("Administrator: Windows Powershell") 中,先安装 `choco`
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
# 在 "Administrator: Windows Powershell" 中,先安装 choco
|
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
|
||||||
> Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
|
|
||||||
# 经由 choco 安装 msys2
|
|
||||||
> choco install -y msys2
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
经由 `choco` 安装 `msys2`
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
choco install -y msys2
|
||||||
|
```
|
||||||
|
|
||||||
|
在 `msys2` 中安装 `mdbook`
|
||||||
|
|
||||||
```console
|
```console
|
||||||
# 在 msys2 中安装 mdbook
|
pacman -S mingw-w64-x86_64-mdbook
|
||||||
$ pacman -S mingw-w64-x86_64-mdbook
|
|
||||||
```
|
```
|
||||||
|
|
||||||
安装好 `mdbook` 后, 带一些命令行参数和开关运行服务器:
|
安装好 `mdbook` 后, 带一些命令行参数和开关运行服务器:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ mdbook serve ~/ts-learnings -p 8080 -n 127.0.0.1 --open
|
mdbook serve ~/rust-lang-zh_CN -p 8080 -n 127.0.0.1 --open
|
||||||
```
|
```
|
||||||
|
|
||||||
> 注:当在 Windows 系统上时,咱们要在 `msys2` 的终端窗口中运行此命令。
|
> 注:当在 Windows 系统上时,咱们要在 `msys2` 的终端窗口中运行此命令。
|
||||||
@ -60,7 +68,6 @@ $ mdbook serve ~/ts-learnings -p 8080 -n 127.0.0.1 --open
|
|||||||
此时,将在操作系统的默认浏览器中,打开本书。
|
此时,将在操作系统的默认浏览器中,打开本书。
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## ES6与 Javascript
|
## ES6与 Javascript
|
||||||
|
|
||||||
ES6仍然是Javascript, 只不过是在我们已经熟悉的Javascript上加入了一些新的东西。使得Javascript更为强大,可以应对大型程序的要求。
|
ES6仍然是Javascript, 只不过是在我们已经熟悉的Javascript上加入了一些新的东西。使得Javascript更为强大,可以应对大型程序的要求。
|
||||||
|
Loading…
Reference in New Issue
Block a user