wildhart:npm-check

v0.2.0Published 15 hours ago

Checks and auto-installs your atmosphere package npm dependencies

wildhart:npm-check is a Meteor 3 compatible republish of akryum:npm-check, created by Guillaume CHAU (@Akryum). All credit to the original author. No code changes from akryum:npm-check@0.1.2 - it is rebuilt and published with the Meteor 3 toolchain (the 0.1.2 isopack bundles a fibers-era promise package that throws Cannot find module 'fibers' at plugin load on Meteor 3).

In your package folder, add a npm.json:

1{
2  "dependencies": {
3    "socket.io-client": "^1.4.6"
4  },
5  "devDependencies": {
6    "vue": "^1.0.24"
7  }
8}

And in your package.js add the npm-check package:

1Package.onUse(function(api) {
2  api.versionsFrom('1.3.2.4');
3  api.use('wildhart:npm-check@0.2.0');
4  api.use('ecmascript');
5  api.mainModule('index.js', 'client');
6});