@wamoio/common
v0.0.10
Published
This project contains source code for wamo-common
Readme
wamo-common
This project contains source code for wamo-common
Prerequisites
Make sure that you have
node(>=10)npmyarn(should be installed globally)- A code editor (
vscode,webstormetc...)
Usage
#yarn
yarn add @wamoio/common
# npm
npm install @wamoio/commonthis project creates a bundle as ES module to enable tree-shaking. If you are using jest as a test framework you need add following lines to your jest config;
"transformIgnorePatterns": [
"node_modules/(?!(@wamoio/common)).*.js$"
]Installing
Clone this repository using
git clone https://github.com/wamoio/wamo-common.gitSet your wamo email to your git config (You should also add your wamo email to your github account)
(In project directory)
git config user.email <[email protected]>check if it is correct
git config user.emailInstall packages using
yarnStart project using
yarn start
