Supported Platforms
Scribe is written in TypeScript, and can be used in any JavaScript or TypeScript runtime. The following are the platforms that explicitly Scribe supports.
Deno
Deno is a secure runtime for JavaScript and TypeScript.
You can use Scribe in Deno by importing the scribeai
module from the Deno
module registry:
import * as scribe from "https://deno.land/x/scribeai/mod.ts";
Note: Deno is the recommended platform for using Scribe.
Node.js
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine.
Install Scribe using npm:
npm i @wecandobetter/scribe
Then import the scribe
module:
import * as scribe from "@wecandobetter/scribe";
Browser
Scribe can be used in the browser by importing the scribeai
module from a CDN:
import * as scribe from "https://cdn.skypack.dev/scribeai";
Note: Scribe is not currently tested against any browsers, and may not work as expected. If you encounter any issues, please open an issue on GitHub.