Server-side library for isomor, a framework that abstracts frontend-backend communication layers to allow direct function calls from UI code. Version 3.0.4 is current; release cadence is irregular. Key differentiators: automatic layer generation via Babel transpilation, eliminates REST/GraphQL overhead, strong TypeScript consistency by colocating frontend and backend code. Targets Node >=11.
npm install isomor-serverNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates and starts an IsomorServer instance on port 4000.
Upgrade Node to >= 11.
Replace `new IsomorServer({ config: {...} })` with `new IsomorServer({...})`.Install isomor-transformer: npm install isomor-transformer
Run `npm install isomor-server` in your project root.
Change `const { IsomorServer } = require('isomor-server')` to `import { IsomorServer } from 'isomor-server'`.Create an instance: `const server = new IsomorServer({}); server.start();`No dependency data recorded yet.