I am trying to port my Node app that uses express extensively to Meteor and webapp is giving me a nightmare. When I run, of course I get a port conflict between the two.
- Can I replace webapp with express in Meteor yet or not?
- Can I disable webapp? I don’t want to remove webapp because I do want to use browser connection features soon.
- It doesn’t look like I can access webapp middleware as can be done with express.
- Which package should I use for server side routes to mimic what has been done with express.get() and express.post() for example? Picker? Iron:Router? Other? Webapp directly somehow?
- How can I port my use of express to webapp? I can’t access webapp from my project. I’m using TypeScript and WebStorm and “import {WebApp} from ‘meteor/webapp’” fails.
I continue to hate using Meteor for a number of reasons. It just doesn’t “work” without massive pain. It has never been a productivity enhancer for me (yet) no matter how hard I try to adopt it.
Thanks.