Meteor as a platform, in my view, excels in creating user-oriented realtime applications with lots of UI and data presentation. It’s all about building applications for people to use.
Your case sounds more like data handling and relatively pure business logic. Any scripting language with good libraries for the formats you mention would be fine, such as Python or Node. I recommend the latter, if you like a highly dynamic, functional way of coding.
Can I use Meteor to accomplish the mentioned functionality? If not, why is Meteor called full stack? (probably I´m misunderstanding something here)
Full stack in this context I think refers to Meteor covering the full stack (as opposed to Angular just handling the front end). Also Meteor uses one language, JavaScript across the whole stack.
I guess I´ll have to use NodeJS (or anything else? Python? Ruby? That provides me with DDP/REST interfaces) to consume the WS?
Correct. Meteor is built on top on NodeJS. So basically you can use any node modules with Meteor. However Meteor uses fibers which means that you’ll have to wrap async methods in order to use them. ex: var writeFileFiber = Meteor.wrapAsync(fs.writeFile);
You could use another separate server using Ruby that can talk the Meteor (NodeJS) server but it’s not going to be turn key (you would need a DDP adapter on the Ruby server).
What can be accomplished with meteor and what not?
I don’t see any blockers but you’ll have to check the NPM site to make sure there are node modules that meet your requirements.
Node can’t multithread so you would have to spawn an extra process or have a pool of node machines that can act as workers to process a queue of jobs.
So i’m not sure how supported this will be. There’s Space Elephant which provides integration with Meteor. However if your UI is not going to consume it you may be able to use a node Postgres module.
Will your project have a front end too? I’ve used Meteor for backend only projects and it works rather well. The DDP provides RPC methods to other servers and it makes it really easy to setup a micro-service architecture in like 5 mins. Also I did this because Node with callbacks is a pain and using Fibers was way more clean (You can even use try-catch!).
Hi, thanks for your reply! Yes, I´ll have a Portal where users can check their XML and PDF documents anytime they want. If it isn´t too much asking, maybe you could give me some pointers on how have you accomplished using Meteor for backend only projects?