parasails is a lightweight (2.96KB gzipped) Vue.js-based framework for building multi-page applications without Webpack, Babel, or other build tools. Version 0.9.3 is the latest stable release. It provides structures for pages, components, utilities, and constants, with optional integrations for Vue Router and jQuery. Designed primarily for use with Sails.js, it offers a simpler alternative to full SPA frameworks by enabling server-rendered pages with client-side interactivity.
npm install parasailsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows a basic parasails page with Vue-like data and methods, no build tools required.
Include Vue via a script tag before parasails, or import it in your module bundler setup.
Include jQuery via a script tag or import it if you need those methods.
Ensure your HTML contains <div id="pageName"> where pageName matches the string passed to registerPage.
Check that parasails is correctly imported via script tag or ES module, and that it is available as a default export.
Load Vue.js via a script tag before parasails, or import it in your bundler.
Add an element with the correct id, e.g., <div id="pageName">.