参考
资源
nginx
安装
1 | brew install nginx |
1 | ==> nginx |
1 | brew install nginx |
1 | ==> nginx |
愚蠢的人让神经网络像机器的硬盘一样记忆信息, 聪明的人让机器模仿学习像人类一样深邃的思考.
1 | cd x:/git.workspace/node-module-boilerplate |
使用 npm 添加开发时依赖: rollup
1 | npm i rollup -D |
创建基本的目录结构
1 | mkdir -p src/index.js __test__/ build coverage rollup.config.js |
安装
1 | npm i -D babel-jest |
.babelrc
参考: JavaScript compiler: Babel
1 | { |
package.json
1 | { |
安装
1 | npm i -D @babel/core @babel/preset-env @babel/cli |
.babelrc
1 | { |
安装 cross-env
1 | npm i -D cross-env |
package.json
1 | { |
安装
1 | npm i -D core-js@3 |
.babelrc
1 | { |
安装 jest
1 | npm install --save-dev jest |
jest.config.js
1 | // For a detailed explanation regarding each configuration property, visit: |
package.json
1 | { |
.travis.yml
1 | language: node_js |
安装
1 | npm i test -D |
1 | npm install codecov --save-dev |
jest.config.js
1 | // For a detailed explanation regarding each configuration property, visit: |
package.json
1 | { |
.travis.yml
1 | script: |
你想说的话, 都是你想表达的意思
SELECT [DISTINCT] [table.]col[, …[table.]col] // 查哪些列 (DISTINCT 去重)
FROM table0 ([…(INNER JOIN | (RIGHT | LEFT)OUTER JOIN) table1 ON table0.main_key = table1.main_key] | [, …table]) // 从哪些表
WHERE (condition […( AND | OR) (condition | sub query)] | [table.]col [NOT] IN (sub query | refer)) // 有哪些条件
GROUP BY [DISTINCT] [table.]col[, …[table.]col] // 如何分组
HAVING (condition […( *AND | OR ) (condition | sub query)] | [table.]col [NOT] IN (sub query | refer)) // 分组后如何过滤
ORDER BY [table.]col[, …[table.]col] [(ASC | DESC)] // 如何排序
LIMIT int OFFSET int // 最多返回多少条, 从哪条开始(默认0)
UNION // 是否组合其他查询(通过 UNION 组合的每个查询必须包含相同的列、表达式或聚集函数)
安装 yarn
1 | npm install yarn -g |
设置代理
1 | #npm |
删除代理
1 | #npm |
ref: https://npm.taobao.org/mirrors
nvm
1 | export NVM_NODEJS_ORG_MIRROR=http://npm.taobao.org/mirrors/node |
1 | npm config set registry https://registry.npm.taobao.org -g |
1 | yarn config set registry https://registry.npm.taobao.org -g |