美文网首页
readme书写

readme书写

作者: 沈哲培 | 来源:发表于2018-10-15 18:18 被阅读0次

    1. 小图标

    https://shields.io/#/
    e.g.

    ![version](https://img.shields.io/badge/version-v2.0.0-brightgreen.svg?style=flat-square)
    [![React](https://img.shields.io/badge/react-^16.3.1-brightgreen.svg?style=flat-square)](https://github.com/facebook/react)
     
    [![MIT](https://img.shields.io/dub/l/vibe-d.svg?style=flat-square)](http://opensource.org/licenses/MIT)
    [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://reactjs.org/docs/how-to-contribute.html#your-first-pull-request)
    

    2. MIT许可证

    MIT License
    Copyright (c) 2018 Youeshenzhepei@163.com
    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    3. 语言支持

    README.zh-CN.md / README.ZH.md
    README.md

    4. 语法

        1. 大标题 ====
        2. 中标题 -------
        3. #一级标题
           ##二级标题
           ###三级标题
           ####四级标题
           #####五级标题
           ######六级标题
        4. * 无序列表一
           * 无序列表二
           * 无序列表三
        5. 1. 有序列表一
           2. 有序列表二
           3. 有序列表三
        6. [百度](http://baidu.com)
        7. ![baidu](https://img.haomeiwen.com/i6856723/a6b3cafb43ab66f1.gif?imageMogr2/auto-orient/strip "百度logo")
        8. ```Java
           public static void main(String[] args){}
           ```
        9. [x] 已选中
        [] 未选中
    

    5. e.g.

    image
    Born to build better enterprise frameworks and apps
    [![NPM version][npm-image]][npm-url]
    [![NPM quality][quality-image]][quality-url]
    [![build status][travis-image]][travis-url]
    [![Test coverage][codecov-image]][codecov-url]
    [![David deps][david-image]][david-url]
    [![Known Vulnerabilities][snyk-image]][snyk-url]
    [![NPM download][download-image]][download-url]
    [![Gitter][gitter-image]][gitter-url]
    [npm-image]: https://img.shields.io/npm/v/egg.svg?style=flat-square
    [npm-url]: https://npmjs.org/package/egg
    [quality-image]: http://npm.packagequality.com/shield/egg.svg?style=flat-square
    [quality-url]: http://packagequality.com/#?package=egg
    [travis-image]: https://img.shields.io/travis/eggjs/egg.svg?style=flat-square
    [travis-url]: https://travis-ci.org/eggjs/egg
    [codecov-image]: https://img.shields.io/codecov/c/github/eggjs/egg.svg?style=flat-square
    [codecov-url]: https://codecov.io/gh/eggjs/egg
    [david-image]: https://img.shields.io/david/eggjs/egg.svg?style=flat-square
    [david-url]: https://david-dm.org/eggjs/egg
    [snyk-image]: https://snyk.io/test/npm/egg/badge.svg?style=flat-square
    [snyk-url]: https://snyk.io/test/npm/egg
    [download-image]: https://img.shields.io/npm/dm/egg.svg?style=flat-square
    [download-url]: https://npmjs.org/package/egg
    [gitter-image]: https://img.shields.io/gitter/room/eggjs/egg.svg?style=flat-square
    [gitter-url]: https://gitter.im/eggjs/egg

    Installation

    $ npm install egg --save
    

    Node.js >= 8.0.0 required.

    Features

    • ✔︎ Built-in process management
    • ✔︎ Plugin system
    • ✔︎ Framework customization
    • ✔︎ Lots of plugins

    Docs & Community

    Getting Started

    Follow the commands listed below.

    $ npm install egg-init -g
    $ egg-init --type simple showcase && cd showcase
    $ npm install
    $ npm run dev
    $ open http://localhost:7001
    

    Examples

    See egg-examples.

    How to Contribute

    Please let us know how can we help. Do check out issues for bug reports or suggestions first.
    To become a contributor, please follow our contributing guide.

    License

    MIT

    1. e.g.
      Born to build better enterprise frameworks and apps

    Installation
    npm install egg --save Node.js >= 8.0.0 required. Features ○ ✔︎ Built-in process management ○ ✔︎ Plugin system ○ ✔︎ Framework customization ○ ✔︎ Lots of plugins Docs & Community ○ Website && Documentations ○ Plugins ○ Frameworks ○ Plugin Dependency Getting Started Follow the commands listed below. npm install egg-init -g
    egg-init --type simple showcase && cd showcase npm install
    npm run dev open http://localhost:7001
    Examples
    See egg-examples.
    How to Contribute
    Please let us know how can we help. Do check out issues for bug reports or suggestions first.
    To become a contributor, please follow our contributing guide.
    License
    MIT

    相关文章

      网友评论

          本文标题:readme书写

          本文链接:https://www.haomeiwen.com/subject/qicqzftx.html