Use an Agent to interact with the Internet Computer from your JavaScript program.
This source code repository contains multiple npm packages, each under ./packages/
.
- Clone the git repository.
- Run
npm install
After that, you probably want to dive into a specific package in ./packages.
We use npm
to manage this repo and its packages. A few useful
commands to keep in mind;
- To run the unit tests locally, you can use
npm run test
. - To run e2e tests, you can use
npm run e2e
. WARNING: You need to have a running replica locally. In our CI runs, we use theic-ref
which is not (at this time) available publicly. Normally you can use a replica distributed with dfx (ie. dfx start in a project), but there is no guarantee that thenext
branch will work with the latest published dfx. Once you have a replica running locally, you must pass the port to the e2e tests using theIC_REF_PORT
environment vairable. If that variable is not set, the tests will fail. - To run the entire ci, use
npm run ci
. This will validate syntax and linting, as well as running tests (both unit and e2e).
To publish to NPM, create a branch and run the following commands;
npm install
. Makes sure everything is installed and up to date locally;npm run build --workspaces
. Builds all the applications and packages.npm run test
. Just in case.lerna version VERSION_NUMBER
. TheVERSION_NUMBER
should be set to the version to be published (e.g.0.6.30
). TheDIST_TAG
argument can be ignored
This will change your code locally, so create a chore: release VERSION_NUMBER
commit and
push. Once the PR is created get someone to review it.
Then, when you have merged and pulled down the committed tag, run npm run publish --workspaces
to publish all packages.
Until we have an internal process and centrally owned canister, docs can be released manually for @dfinity/agent
and @dfinity/authentication
.
- Start from a fresh clone (or
git clean -dfx .
) npm install
npm run make:docs/reference
dfx deploy
Note - you may need to ask to be added as a controller for the wallet that owns the docs until this job is moved to CI
GitHub Actions for this repo are configured in ./.github/workflows.
- nodejs-ci.yml - For every git push, do a build, test of all packages.
- commitlint.yml - Run commitlint on every git commit message.
All commits in the master branch should come from squashed GitHub Pull Requests, and those commit messages should follow the conventionalcommits.org syntax.
Mergify can take care of enforcing all of this. Just add the automerge-squash
label to each Pull Request that Mergify should merge. This policy is configured via ./.mergify.yml.
The following scripts can be found in ./bin:
Monorepo-related scripts run in this order, but are usually invoked by npm install
:
- npm-postinstall - Run with
npm run postinstall
in this monorepo package.- It copies devtools dependencies from ./packages/agent-js-devtools/node_modules -> ./node_modules
- build - Build (
npm run build
) each subpackage in ./packages/ - test - Run
npm test
in each subpackage