plug
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
- deno_plugin_prepare - A library for managing deno native plugin dependencies
- cache - Deno cache library
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.