Skip to content

Latest commit

History

History
63 lines (47 loc) 路 1.97 KB

README.md

File metadata and controls

63 lines (47 loc) 路 1.97 KB

plug

Tags CI Status Dependencies License

Plugin management library.


鈿狅笍 Plugins in deno are unstable and undergoing BREAKING CHANGES. This library aims to follow changes to the stdlib as closly as possible.


import { Plug } from "https://deno.land/x/plug/mod.ts";

// Backwards compatibility with deno-plugin-prepare
const options: Plug.Options = {
  name: "test_plugin",
  urls: {
    darwin: `${path}/libtest_plugin.dylib`,
    windows: `${path}/test_plugin.dll`,
    linux: `${path}/libtest_plugin.so`,
  }
};

// Or if you want plug to guess your binary names
const options: Plug.Options = {
  name: "test_plugin",
  url: "https://example.com/some/path/"
  // Becomes:
  // darwin: "https://example.com/some/path/libtest_plugin.dylib"
  // windows: "https://example.com/some/path/test_plugin.dll"
  // linux: "https://example.com/some/path/libtest_plugin.so"
};

const rid = await Plug.prepare(options);

const { testSync } = Plug.core.ops();
const response = Plug.core.dispatch(
  testSync,
  ...
);

Deno.close(rid);

Other

Related

Contribution

Pull request, issues and feedback are very welcome. Code style is formatted with deno fmt and commit messages are done following Conventional Commits spec.

Licence

Copyright 2020-present, the denosaurs team. All rights reserved. MIT license.