A CLI tool and module bundler that combines Meteor Atmosphere packages into a single JavaScript module for use outside of the full Meteor platform. Version 0.6.0 is the latest stable release (last release in 2018). It uses the Meteor command-line tool to resolve and bundle packages, producing a standalone file that provides Meteor's client-side API (including DDP). Key differentiator: it enables frameworks like Angular CLI, React Native, or Ionic to use Meteor's real-time data features without running a Meteor server. Compared to alternatives like `ddp-client`, this bundles full Meteor client runtime including accounts and file upload packages.
npm install meteor-client-bundlerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows installation, configuration, bundling with meteor-client-bundler, and client usage with Meteor.connect and Meteor.call.
Change `import Meteor from 'meteor-client'` to `import { Meteor } from 'meteor-client'`Install Meteor: `curl https://install.meteor.com/ | sh`
Use `"runtime": { "DDP_DEFAULT_CONNECTION_URL": "..." }` in the config fileUse a bundler like webpack or rollup to transform the output, or set the output to CommonJS via the config (not documented).
Ensure you have run `meteor-client bundle` and the output file path matches your import. For example, if bundled to `meteor-bundle.js`, import from './meteor-bundle'.
Call `import { Meteor } from 'meteor-client'; Meteor.connect('...');` and ensure the connection URL is reachable.Check the `release` field in config; ensure Meteor is installed and the release exists. Use `meteor update` to fetch releases.