Feature/add icons (#76)

* Add new logo

* Rename logo file

* Fix file name typo

* Make logo smaller

* Add icons

* Add branching image

* Set the branching image right

* Add icons to both english and chinese

* Fix logo and add link to english
This commit is contained in:
Vahid Panjganj 2017-07-27 13:23:55 +01:00 committed by GitHub
parent 3ca37394a3
commit d61054b63a
16 changed files with 58 additions and 4 deletions

View File

@ -1,7 +1,9 @@
[<img src="./images/logo.png">](http://wearehive.co.uk/)
[EN](./README.md)
[<img src="./images/hive-red-logo.png" width="180" height="180">](http://wearehive.co.uk/)
# 项目规范 &middot; [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
javascript工程项目的一系列最佳实践策略
@ -29,6 +31,9 @@ javascript工程项目的一系列最佳实践策略
<a name="git"></a>
## 1. Git
<a name="some-git-rules"></a>
![git](/images/branching.png)
### 1.1 一些Git规则
有一套规则要牢记:
@ -165,6 +170,9 @@ javascript工程项目的一系列最佳实践策略
<a name="文档"></a>
## 2. 文档
![文档](/images/documentation.png)
* 使用这个 [模板](./README.sample.md) 给 `README.md`, 欢迎添加里面没有的内容。
* 对于具有多个存储库的项目,请在各自的`README.md`文件中提供它们的链接。
* 随项目持续的更新 `README.md`.
@ -174,8 +182,9 @@ javascript工程项目的一系列最佳实践策略
* 也不要把那些清晰的代码作为不写注释的借口。
* 当代码更新,也请确保注释的同步更新。
<a name="环境"></a>
<a name="environments"></a>
## 3. 环境
![环境](/images/laptop.png)
* 如果需要,请分别定义 `development`, `test``production` 三个环境.
_为什么:_
@ -243,6 +252,9 @@ javascript工程项目的一系列最佳实践策略
<a name="dependencies"></a>
## 4. 依赖
![依赖](/images/modules.png)
* 持续跟踪你当前的可用依赖包: e.g., `npm ls --depth=0`. [更多请阅读...](https://docs.npmjs.com/cli/ls)
* 查看这些软件包是否已经变得不可用或者已经废弃: `depcheck`. [更多请阅读...](https://www.npmjs.com/package/depcheck)
@ -270,6 +282,8 @@ javascript工程项目的一系列最佳实践策略
<a name="testing"></a>
## 5. 测试
![测试](/images/testing.png)
* 如果需要,构建一个 `test` 环境.
_为什么:_
@ -311,6 +325,9 @@ javascript工程项目的一系列最佳实践策略
<a name="structure-and-naming"></a>
## 6. 结构布局与命名
![结构布局与命名](/images/folder-tree.png)
* 围绕产品功能/页面/组件来组织您的文件,而不是围绕角色来组织文件。此外,请将测试文件放在他们对应实现的旁边。
@ -378,6 +395,9 @@ javascript工程项目的一系列最佳实践策略
<a name="code-style"></a>
## 7. 代码风格
![代码风格](/images/code-style.png)
* 对新项目请使用Stage2和更高版本的JavaScript现代化语法。对于老项目保持与老的语法一致除非您打算把老的项目也更新为现代化风格。
_为什么:_
@ -438,6 +458,9 @@ javascript工程项目的一系列最佳实践策略
<a name="logging"></a>
## 8. 日志
![日志](/images/logging.png)
* 避免在生产环境中使用客户端的日志
_为什么:_
@ -452,6 +475,9 @@ javascript工程项目的一系列最佳实践策略
<a name="api"></a>
## 9. API
![API](/images/api.png)
<a name="api-design"></a>
### 9.1 API 设计
@ -712,6 +738,9 @@ _为什么:_
<a name="licensing"></a>
## 10. 证书
![证书](/images/licensing.png)
确保使用您有权使用的这些资源。如果您使用其中的软件库请记住先查询MITApache或BSD但如果您打算修改它们请查看许可证详细信息。图像和视频的版权可能会导致法律问题。

View File

@ -1,7 +1,7 @@
[中文版](./README-zh.md)
[<img src="./images/logo.png">](http://wearehive.co.uk/)
[<img src="./images/hive-red-logo.png" width="180" height="180">](http://wearehive.co.uk/)
# Project Guidelines &middot; [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
@ -29,7 +29,9 @@ If you want to share a best practice, or think one of these guidelines should be
<a name="git"></a>
## 1. Git
![Git](/images/branching.png)
<a name="some-git-rules"></a>
### 1.1 Some Git rules
There are a set of rules to keep in mind:
* Perform work in a feature branch.
@ -165,6 +167,9 @@ Having a good guideline for creating commits and sticking to it makes working wi
<a name="documentation"></a>
## 2. Documentation
![Documentation](/images/documentation.png)
* Use this [template](./README.sample.md) for `README.md`, Feel free to add uncovered sections.
* For projects with more than one repository, provide links to them in their respective `README.md` files.
* Keep `README.md` updated as a project evolves.
@ -176,6 +181,9 @@ Having a good guideline for creating commits and sticking to it makes working wi
<a name="environments"></a>
## 3. Environments
![Environments](/images/laptop.png)
* Define separate `development`, `test` and `production` environments if needed.
_Why:_
@ -243,6 +251,9 @@ Having a good guideline for creating commits and sticking to it makes working wi
<a name="dependencies"></a>
## 4. Dependencies
![Github](/images/modules.png)
* Keep track of your currently available packages: e.g., `npm ls --depth=0`. [read more...](https://docs.npmjs.com/cli/ls)
* See if any of your packages have become unused or irrelevant: `depcheck`. [read more...](https://www.npmjs.com/package/depcheck)
@ -270,7 +281,7 @@ Having a good guideline for creating commits and sticking to it makes working wi
<a name="testing"></a>
## 5. Testing
![Testing](/images/testing.png)
* Have a `test` mode environment if needed.
_Why:_
@ -312,6 +323,7 @@ Having a good guideline for creating commits and sticking to it makes working wi
<a name="structure-and-naming"></a>
## 6. Structure and Naming
![Structure and Naming](/images/folder-tree.png)
* Organize your files around product features / pages / components, not roles. Also, place your test files next to their implementation.
@ -378,6 +390,9 @@ Having a good guideline for creating commits and sticking to it makes working wi
<a name="code-style"></a>
## 7. Code style
![Code style](/images/code-style.png)
* Use stage-2 and higher JavaScript (modern) syntax for new projects. For old project stay consistent with existing syntax unless you intend to modernise the project.
_Why:_
@ -438,6 +453,9 @@ Having a good guideline for creating commits and sticking to it makes working wi
<a name="logging"></a>
## 8. Logging
![Logging](/images/logging.png)
* Avoid client-side console logs in production
_Why:_
@ -453,6 +471,9 @@ Having a good guideline for creating commits and sticking to it makes working wi
<a name="api"></a>
## 9. API
<a name="api-design"></a>
![API](/images/api.png)
### 9.1 API design
_Why:_
@ -709,6 +730,8 @@ For each endpoint explain:
<a name="licensing"></a>
## 10. Licensing
![Licensing](/images/Licensing.png)
Make sure you use resources that you have the rights to use. If you use libraries, remember to look for MIT, Apache or BSD but if you modify them, then take a look into license details. Copyrighted images and videos may cause legal problems.
@ -722,3 +745,5 @@ Sources:
[Apigee](https://apigee.com/about/blog),
[Wishtack](https://blog.wishtack.com)
Icons by [icons8](https://icons8.com/)

BIN
images/api.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
images/branching.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
images/code-style.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
images/documentation.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
images/folder-tree.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
images/git.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
images/github.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

BIN
images/hive-red-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
images/laptop.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
images/licensing.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
images/logging.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

BIN
images/modules.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
images/testing.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB