Skip to content

Latest commit

Β 

History

History
54 lines (33 loc) Β· 774 Bytes

File metadata and controls

54 lines (33 loc) Β· 774 Bytes

Node.js Package Template

A template for creating Node.js packages @ we are.

:description

πŸ’Ύ Installation

You can use your package manager (npm or yarn) to install:

npm install --save @weare/:package

or

yarn add @weare/:package

πŸ”Œ Getting started

:examples

Development

πŸ“„ Makefile

The Makefile is used to create easy-to-use commands. Instead of adding complex commands (with a lot of parameters etc.) to this README, add a simpler version to this README file making use of the Makefile.

βš™οΈ Install

To install the dependencies:

make install

πŸ’― Tests

To run the tests:

make tests

🚨 Lint

To lint your code:

make lint