https://github.com/dolittle/javascript.sdk
Dolittle JavaScript SDK
https://github.com/dolittle/javascript.sdk
dolittle event-driven event-sourcing events typescript
Last synced: 28 days ago
JSON representation
Dolittle JavaScript SDK
- Host: GitHub
- URL: https://github.com/dolittle/javascript.sdk
- Owner: dolittle
- License: mit
- Created: 2020-01-12T07:02:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-30T22:15:10.000Z (over 1 year ago)
- Last Synced: 2025-04-13T22:40:46.031Z (about 1 month ago)
- Topics: dolittle, event-driven, event-sourcing, events, typescript
- Language: TypeScript
- Homepage: https://dolittle.io
- Size: 2.35 MB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Documentation |
Tutorial |
Runtime |
C# SDK---
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
This is our JS SDK, install it with:
```shell
$ npm install @dolittle/sdk
```# Get Started
- Try our [tutorials](https://dolittle.io/docs/tutorials/)
- Check out our [documentation](https://dolittle.io)In the [./Samples/Tutorial](./Samples/Tutorial) folder you can find sample code on how to use the SDK.
# Building
This project relies on [NodeJS](https://nodejs.org/en/) `>= 14.16` and leverages [Yarn](http://yarnpkg.com/) `>= 1.22`.
The code is written using [TypeScript](http://www.typescriptlang.org) and transpiles
to JavaScript as part of its building.At the root level of the repository, to restore all node modules, run the following:
```shell
$ yarn
```To build, run the following at the root level of the repository:
```shell
$ yarn build
```To run the test harness:
```shell
$ yarn test
```# Issues and Contributing
Issues and contributions are always welcome!To learn how to contribute, please read our [contributing](https://dolittle.io/docs/contributing/) guide.