I think it would be nice to show how large each package is before the user installs it. For npm packages, we can get a badge from https://github.com/styfle/packagephobia/issues/24 For example: ``` <div class="description"><%= project.description %></div> <div class="install-size"> <img alt="install size" src="https://packagephobia.now.sh/badge?p=<%= project.name %>" /> </div> ``` Is `project.name` the correct property to find the name on npm?
I think it would be nice to show how large each package is before the user installs it.
For npm packages, we can get a badge from styfle/packagephobia#24
For example:
Is
project.namethe correct property to find the name on npm?