Skip to main content
Home
This package has been archived, and as such it is read-only.

Built and signed on GitHub Actions

a typescript-based chatbot that supports bridging multiple platforms via plugins

This package works with Deno
This package works with Deno
JSR Score
94%
Published
a year ago (0.7.4)

@jersey/lightning

lightning is a typescript-based chatbot that supports bridging multiple chat apps via plugins

docs

example config

import type { config } from 'jsr:@jersey/lightning@0.7.4';
import { discord_plugin } from 'jsr:@jersey/lightning-plugin-discord@0.7.4';

export default {
	redis_host: 'localhost',
	redis_port: 6379,
	plugins: [
		discord_plugin.new({
			// ...
		}),
	],
} as config;
Built and signed on
GitHub Actions

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@jersey/lightning

Import symbol

import * as lightning from "@jersey/lightning";
or

Import directly with a jsr specifier

import * as lightning from "jsr:@jersey/lightning";