-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3617e0d
commit 3a608f4
Showing
17 changed files
with
133 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * from './io.ts'; | ||
export * from './provider.ts'; | ||
export * from './client.ts'; | ||
export * from './remote.ts'; | ||
export * from './reactor.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
# mithic:keyvalue | ||
|
||
[![mithic](https://img.shields.io/badge/project-mithic-blueviolet.svg?style=flat-square&logo=github)](https://github.com/andykswong/mithic) | ||
[![npm](https://img.shields.io/npm/v/@mithic/interface-keyvalue?style=flat-square&logo=npm)](https://www.npmjs.com/package/@mithic/interface-keyvalue) | ||
[![docs](https://img.shields.io/badge/docs-typedoc-blue?style=flat-square&logo=typescript&logoColor=white)](http://andykswong.github.io/mithic) | ||
[![license: MIT](https://img.shields.io/badge/License-MIT-red.svg?style=flat-square)](./LICENSE) | ||
[![build](https://img.shields.io/github/actions/workflow/status/andykswong/mithic/build.yaml?style=flat-square)](https://github.com/andykswong/mithic/actions/workflows/build.yaml) | ||
|
||
Key-value store API for mithic. | ||
Forked from [wasi-keyvalue](https://github.com/WebAssembly/wasi-keyvalue) draft API. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"name": "@mithic/interface-keyvalue", | ||
"version": "0.2.0", | ||
"description": "mithic key-value store WIT spec", | ||
"type": "module", | ||
"sideEffects": false, | ||
"main": "./dist/keyvalue.wasm", | ||
"exports": { | ||
".": "./dist/keyvalue.wasm" | ||
}, | ||
"files": [ | ||
"/dist", | ||
"/wit" | ||
], | ||
"scripts": { | ||
"prepublishOnly": "npm run clean && npm run build", | ||
"clean": "rimraf dist", | ||
"prebuild": "mkdir -p dist", | ||
"build": "../../bin/wasm-tools component wit -w -o dist/keyvalue.wasm wit", | ||
"test": "echo \"ok\"", | ||
"wit-deps": "../../bin/wit-deps" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/andykswong/mithic.git" | ||
}, | ||
"keywords": [ | ||
"collection", | ||
"keyvalue", | ||
"mithic", | ||
"typescript", | ||
"wit" | ||
], | ||
"author": "Andy K.S. Wong <andykswong@outlook.com>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/andykswong/mithic/issues" | ||
}, | ||
"homepage": "https://github.com/andykswong/mithic", | ||
"dependencies": { | ||
}, | ||
"devDependencies": { | ||
} | ||
} |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
# mithic:messaging | ||
|
||
[![mithic](https://img.shields.io/badge/project-mithic-blueviolet.svg?style=flat-square&logo=github)](https://github.com/andykswong/mithic) | ||
[![npm](https://img.shields.io/npm/v/@mithic/interface-messaging?style=flat-square&logo=npm)](https://www.npmjs.com/package/@mithic/interface-messaging) | ||
[![docs](https://img.shields.io/badge/docs-typedoc-blue?style=flat-square&logo=typescript&logoColor=white)](http://andykswong.github.io/mithic) | ||
[![license: MIT](https://img.shields.io/badge/License-MIT-red.svg?style=flat-square)](./LICENSE) | ||
[![build](https://img.shields.io/github/actions/workflow/status/andykswong/mithic/build.yaml?style=flat-square)](https://github.com/andykswong/mithic/actions/workflows/build.yaml) | ||
|
||
Messaging API for mithic. | ||
Forked from [wasi-messaging](https://github.com/WebAssembly/wasi-messaging) draft API. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"name": "@mithic/interface-messaging", | ||
"version": "0.2.0", | ||
"description": "mithic messaging WIT spec", | ||
"type": "module", | ||
"sideEffects": false, | ||
"main": "./dist/messaging.wasm", | ||
"exports": { | ||
".": "./dist/messaging.wasm" | ||
}, | ||
"files": [ | ||
"/dist", | ||
"/wit" | ||
], | ||
"scripts": { | ||
"prepublishOnly": "npm run clean && npm run build", | ||
"clean": "rimraf dist", | ||
"prebuild": "mkdir -p dist", | ||
"build": "../../bin/wasm-tools component wit -w -o dist/messaging.wasm wit", | ||
"test": "echo \"ok\"", | ||
"wit-deps": "../../bin/wit-deps" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/andykswong/mithic.git" | ||
}, | ||
"keywords": [ | ||
"message", | ||
"messagequeue", | ||
"messaging", | ||
"mithic", | ||
"p2p", | ||
"pubsub", | ||
"queue", | ||
"typescript", | ||
"wit" | ||
], | ||
"author": "Andy K.S. Wong <andykswong@outlook.com>", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/andykswong/mithic/issues" | ||
}, | ||
"homepage": "https://github.com/andykswong/mithic", | ||
"dependencies": { | ||
}, | ||
"devDependencies": { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters