@nexa-ed/node
v0.2.0-beta.2
Published
Nexa Education Platform — Node.js & Framework-Agnostic Adapter
Readme
@nexa-ed/node
Framework-agnostic Node.js adapter for the Nexa Education Platform. Supports Express, Fastify, and Hono out of the box.
Install
npm install @nexa-ed/node @nexa-ed/sdk
# or
pnpm add @nexa-ed/node @nexa-ed/sdkPeer dependencies
Install the framework(s) you use — all are optional:
npm install express # or fastify, or honoQuick start
// Hono
import { Hono } from "hono";
import { createNexaHono } from "@nexa-ed/node/hono";
const app = new Hono();
app.route("/nexa", createNexaHono({ apiKey: process.env.NEXA_API_KEY! }));Documentation
| Framework | Link | |-----------|------| | Express | docs.nexa-ed.com/docs/node/express | | Fastify | docs.nexa-ed.com/docs/node/fastify | | Hono | docs.nexa-ed.com/docs/node/hono | | Overview | docs.nexa-ed.com/docs/node |
License
MIT
