๐ Be a great README tips
https://img.shields.io/badge/<left side>-<right side>-<color>.svg?style=<plastic|flat|flat-square>
sample
Qiita
// Bad:
const hero = {
firstName: 'Florence',
- lastName: 'Nightingale'
+ lastName: 'Nightingale',
+ inventorOf: ['coxcomb graph', 'modern nursing']
};
// Good:
const hero = {
firstName: 'Florence',
lastName: 'Nightingale',
+ inventorOf: ['coxcomb chart', 'modern nursing'],
};
Ref: https://github.com/babel/example-node-server
Ctrl `
Ref: sindresorhus/ama#131