Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dfinity/agent-js
A collection of libraries and tools for building software around the Internet Computer, in JavaScript.
https://github.com/dfinity/agent-js
Last synced: 5 days ago
JSON representation
A collection of libraries and tools for building software around the Internet Computer, in JavaScript.
- Host: GitHub
- URL: https://github.com/dfinity/agent-js
- Owner: dfinity
- License: apache-2.0
- Created: 2020-08-26T02:21:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T21:00:35.000Z (14 days ago)
- Last Synced: 2024-10-25T13:03:57.175Z (13 days ago)
- Language: TypeScript
- Homepage: https://agent-js.icp.xyz
- Size: 13.4 MB
- Stars: 154
- Watchers: 35
- Forks: 95
- Open Issues: 63
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-internet-computer - agent-js - Collection of libraries to interact with the IC using JavaScript. (Client Libraries (Agents) / JavaScript/TypeScript)
README
# agent-js
Use an Agent to interact with the Internet Computer from your JavaScript program.
This source code repository contains multiple npm packages, each under `./packages/`.
## Development
### Getting Started
1. Clone the git repository.
2. Run `npm i -g npm`
3. Run `npm install`After that, you probably want to dive into a specific package in [./packages](./packages).
### Running Tests
Running tests is a good way to get a sense of what the features will do. We try to have full unit test coverage for all new features, although sometimes mocking network conditions can be difficult, and e2e tests may be preferable.
#### Unit Tests
To run the unit tests for all packages, run `npm test`. You can run tests for a specific package by running `npm test` in the package directory or by running `npm test --workspace=` in the root directory.
#### E2E Tests
There are two sets of e2e tests in this repository. They are located in `e2e/browser` and `e2e/node`. The browser tests are run in a headless browser, and the node tests are run in a node environment. The node tests are faster and require less setup, but the browser tests can simulate relevant environmental conditions.
> **Important Note:** the e2e tests do not run from the TypeScript source code of projects and must be compiled. You should run `npm run build` to compile the projects after your changes before running the tests.
To run the e2e node tests, you can run
```bash
dfx start --background --clean
npm run e2e --workspace e2e/node
dfx stop
```We expect you to have the replica running on port `4943`. If you are using a different port, you can set an environment variable `REPLICA_PORT` to the port number.
> Note: browser tests have been temporarily removed pending a rewrite
To run the e2e browser tests, you can run
```bash
dfx start --background --clean
npm run setup --workspace e2e/browser
npm run e2e --workspace e2e/browser
dfx stop
```#### Workspaces
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 the `ic-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 the `next` 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 the
`REPLICA_PORT` environment vairable. If that variable is not set, the tests will fail.### bin/\* scripts
The following scripts can be found in [./bin](./bin):
- update-management-idl - Update the management canister IDL in @dfinity/agent
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## Contributing
Contributions are welcome! Please refer to the [CONTRIBUTING.md](CONTRIBUTING.md), where you can find more details about:
- Setting up the repository, making changes, documenting these changes, adherence to automated formatting like prettier, and Continuous Integration, which is facilitated by GitHub Actions.
- Information about our review process.
- The release process, publishing to NPM, and publishing docs.
- The process for deprecating packages in this repository.## License
This project is licensed under the [Apache-2.0 License](LICENSE).