React + Parse or React + Meteor?
Ad
I am trying to make a web app that let people's create website bookmarks and save their credentials for bookmarked websites, which obviously requires the app to be secure.
Since I am a novice in both Parse and Meteor, I am not sure which one to choose.
Second question, if I choose meteor, can I host my own back-end server rather than let meteor host for me?
Ad
Answer
Ad
For your second question: yes, you can host your own server.
To do so, use the following command to build and pack your web app:
meteor build {your_src_path} --architecture {os_archetecture}
This command will give you a node.js application, which can be easily deployed on your own server.
You can also build a docker image for your web app, which might provide you some extra convenience: meteorhacks/meteord
Ad
source: stackoverflow.com
Related Questions
Ad
- → Material-ui LeftNav with Toolbar not working
- → How to control meteor data stream with react?
- → Render array of inputs in react
- → Setting Page Title with useraccounts:flow-router
- → Convert a collectionFS file from filesystem to gridFS on serverside
- → Meteor Accounts add extra fields
- → React + Parse or React + Meteor?
- → Meteor: ReactMeteorData with Ecmascript6
- → Implement SEO to Meteor app the right way
- → Meteor: file upload error
- → Meteor: Iterating over an Object inside of a Collection
- → Node JS project where client side javascript variables persist?
- → Meteor + React how to set the value of a lot of input elements and modify them after
Ad