This projet is open to everyone. Feel free to test the library, share it, improve it, and create merge requests.
The library requires Node.js 22+
and yarn
.
First, we have to switch to the correct version of node:
nvm use
If you don't have nvm
, you may manually install and use Node.js 22+.
Then, we have to use the proper package manager (here yarn
):
corepack enable
And install the dependencies:
yarn install
- The source code is located in the
src
directory. - The projet uses prettier to format the code. You'll want to enable and configure it in your IDE.
- The tests are run with jest
fb:build
: builds the library.fb:format
: formats the code usingprettier
.fb:test
: runs the tests usingjest
.fb:dev
: builds the lib indev
mode, and publishes it on a localverdaccio
.