An open API service indexing awesome lists of open source software.

https://github.com/uetchy/mdmod-plugin-top

mdmod plugin to create a table of packages.
https://github.com/uetchy/mdmod-plugin-top

mdmod

Last synced: 10 months ago
JSON representation

mdmod plugin to create a table of packages.

Awesome Lists containing this project

README

          

# mdmod-plugin-top

[![npm](https://flat.badgen.net/npm/v/mdmod-plugin-top)][npm-url]
[![npm: total downloads](https://flat.badgen.net/npm/dt/mdmod-plugin-top)][npm-url]

[npm-url]: https://npmjs.org/package/mdmod-plugin-top

[mdmod](https://github.com/uetchy/mdmod) plugin to create a table of packages.

## Install

```bash
npm i -g mdmod mdmod-plugin-top
# or `npm i mdmod mdmod-plugin-top` to use it locally
```

## Use

```bash
mdmod README.md
```

It will generate a list of monorepo packages in `/packages/*`.

````md

### [pkg1](packages/pkg1)

testPackage

[![](https://img.shields.io/npm/v/pkg1.svg)](https://npmjs.com/package/pkg1)
[![npm: total downloads](https://flat.badgen.net/npm/dt/pkg1)](https://npmjs.com/package/pkg1)
![npm: license](https://flat.badgen.net/npm/license/pkg1)

```bash
npm install --save pkg1
# or
yarn add pkg1
```

````