isomor-vue-app is a library for isomor v2.x, an isomorphic framework that abstracts frontend-backend layers in a single TypeScript/JavaScript project. It generates communication layers automatically, replacing REST or GraphQL with direct function calls from frontend to server. This package provides Vue-specific integration (likely Vue 2) for isomor. The framework uses Babel transpilation to separate code. Released as part of isomor ecosystem, maintained by apiel.
npm install isomor-vue-appNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize isomor-vue-app with a Vue 2 frontend, showing plugin setup and direct server function invocation.
Upgrade isomor to v2.x.
Use a different library for Vue 3, or stay on Vue 2.
Keep client and server code in separate files with appropriate imports.
Add isomor to your dependencies.
Run npm install isomor-vue-app isomor
Run npm install isomor
Ensure Vue is properly imported: import Vue from 'vue'