##Description Insert a short description explaining the purpose of the package
npm i {{package-name}} --save
import {{identifier}} from '{{package-name}}'
//Show examples of how a consumer can instantiate or interact with the package
//Explain how the package can be configured.
//If the package follows a constructor pattern, what arguments does it accept?
//Are there any default values to the arguments that need explaining?
//What methods can a consumer call to interact with the package?
//What properties can a consumer access to ascertain the state of the package?
.package-name{
/* Are there any styles needed to support the package? */
}
<div class="js-package-name">
<!-- Does the package require any markup to be hard-coded into the DOM? -->
</div>
How can a developer add contributions to the package?