From 41f77edc881ac8896b7264b002f8ff4cf2d30456 Mon Sep 17 00:00:00 2001 From: yoshuawuyts Date: Sun, 6 Jul 2014 03:32:25 +0200 Subject: [PATCH] readme: add flat badges and url variables --- Readme.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Readme.md b/Readme.md index 2c4533b..b176a24 100644 --- a/Readme.md +++ b/Readme.md @@ -1,8 +1,8 @@ koa middleware framework for nodejs - [![NPM version](https://badge.fury.io/js/koa.svg)](https://badge.fury.io/js/koa) - [![Build Status](https://travis-ci.org/koajs/koa.svg)](https://travis-ci.org/koajs/koa) - [![Coverage Status](https://img.shields.io/coveralls/koajs/koa.svg)](https://coveralls.io/r/koajs/koa?branch=master) + [![NPM version][npm-image]][npm-url] + [![build status][travis-image]][travis-url] + [![Test coverage][coveralls-image]][coveralls-url] Expressive middleware for node.js using generators via [co](https://github.com/visionmedia/co) to make web applications and APIs more enjoyable to write. Koa's middleware flow in a stack-like manner allowing you to perform actions downstream, then filter and manipulate the response upstream. Koa's use of generators also greatly increases the readability and robustness of your application. @@ -78,3 +78,10 @@ $ make test # License MIT + +[npm-image]: https://img.shields.io/npm/v/koa.svg?style=flat +[npm-url]: https://npmjs.org/package/koa +[travis-image]: https://img.shields.io/travis/koajs/koa.svg?style=flat +[travis-url]: https://travis-ci.org/koajs/koa +[coveralls-image]: https://img.shields.io/coveralls/koajs/koa.svg?style=flat +[coveralls-url]: https://coveralls.io/r/koajs/koa?branch=master