Reputation: 1333
I would like to know if it is possible to install MeteorJS on an AS400 (IBMi), as it's able to run Node.js, MongoDB, ...
I quickly tested the installation via "curl", but I have a message saying that the platform is not supported.
Would anyone have already tested via the NPM packages?
Where I have a doubt: is all Meteor code in JS, or is there a binary layer that makes it impossible?
Upvotes: 1
Views: 141
Reputation: 53290
Once built (i.e. used for production), Meteor is just like any other Node.js app.
Therefore it should be able to run on your system, provided that the latter can run the required Node.js version (and MongoDB if you run it from your system as well) and it has the native bindings for dependent packages / modules.
During development, Meteor relies on a number of extra scripts, typically to watch files and bundle (i.e. build) the Node.js app. This is where you might not be able to use Meteor on your system. For Linux and macOS, it uses shell scripts. For Windows, it uses an executable.
While not ideal, you could still perform your development on an officially supported platform, then from time to time build your app and run it on your system to check that the Node.js app runs everywhere as advertised.
Upvotes: 2