runebolt
v0.1.0
Published
A framework combining React frontend with Node.js API routes in a single process
Downloads
9
Readme
runebolt
Meta-package for the RuneBolt framework. This package includes all core dependencies for building React applications with integrated Node.js API routes.
Installation
# npm
npm install runebolt
# yarn
yarn add runebolt
# pnpm
pnpm add runeboltUsage
import { createServer } from 'runebolt';
const server = createServer({
port: 3000
});
server.start();Documentation
See the main RuneBolt documentation for complete usage guide.
