how to create a Rest API in Meteor

srinivas

How can one design/write an efficient rest API with meteor, that can also be used by mobile apps? Can mobile apps also take advantage of meteors reactive programming?

With so many programming choices currently available, it seems wasteful to repeat everything(code, api) for different platforms, instead of having a good practical solution.

Andrew Mao

Your post is really two different questions.

  1. Yes, there is a way to attach REST endpoints to Meteor. You just write them as normal Node.js code using connect or Express and attach them to the WebApp.connectHandlers after pulling in the webapp package (meteor add webapp).

  2. Mobile apps can take advantage of reactivity by being implemented in Javascript. You can either access your app directly from a mobile browser, or just use PhoneGap/Cordova to wrap it in a "native" app container. As phones become more popular, this will probably be the default way to deploy apps versus writing many copies of the same app in different codebases.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to create a Rest API in Meteor

From Dev

Meteor rest api with iron router

From Dev

Meteor rest api with iron router

From Dev

How to create REST API with optional parameters?

From Dev

How to create authentication in Laravel for REST API

From Dev

How to Create a Issue into JIRA through REST api?

From Dev

How to create a view from Bigquery REST api

From Dev

How to create a view from Bigquery REST api

From Dev

how to create rest api using redmine with nodejs?

From Dev

how to create Meteor package

From Dev

how to use rest api to create extension api on Bonita BPM

From Dev

How to create chat room in ejabberd through rest api?

From Dev

How to create clientId and clientSecret for OAuthTokenCredential paypal rest api

From Java

How do I create a login API using Django Rest Framework?

From Dev

How to create Apex trigger and apex class using Rest API?

From Dev

How to create new page in Confluence using their REST API?

From Dev

How to create a new instance of Azure Application Insights through the REST API

From Dev

QuickBlox - How to use REST API + PHP to create blob content

From Dev

how to create an issue in jira using the rest api (java)?

From Dev

How to automatically create a REST API node.js / MongoDB

From Dev

How to create a new page in Confluence using jQuery and their REST API?

From Dev

How to Create a REST API for Yii2-basic-template

From Dev

How to create submodule in GitHub using GitHub Rest Api

From Dev

How do you create a class diagram for a SPA and a REST API?

From Dev

Azure DevOps: How to create a folder in GIT repo with REST API repo

From Dev

Azure DevOps: How to create a folder in GIT repo with REST API repo

From Dev

How to create a new document in Alfresco via REST API?

From Dev

How to batch create users in Parse via REST api

From Dev

How to create Tags using docusign PHP REST API

Related Related

  1. 1

    how to create a Rest API in Meteor

  2. 2

    Meteor rest api with iron router

  3. 3

    Meteor rest api with iron router

  4. 4

    How to create REST API with optional parameters?

  5. 5

    How to create authentication in Laravel for REST API

  6. 6

    How to Create a Issue into JIRA through REST api?

  7. 7

    How to create a view from Bigquery REST api

  8. 8

    How to create a view from Bigquery REST api

  9. 9

    how to create rest api using redmine with nodejs?

  10. 10

    how to create Meteor package

  11. 11

    how to use rest api to create extension api on Bonita BPM

  12. 12

    How to create chat room in ejabberd through rest api?

  13. 13

    How to create clientId and clientSecret for OAuthTokenCredential paypal rest api

  14. 14

    How do I create a login API using Django Rest Framework?

  15. 15

    How to create Apex trigger and apex class using Rest API?

  16. 16

    How to create new page in Confluence using their REST API?

  17. 17

    How to create a new instance of Azure Application Insights through the REST API

  18. 18

    QuickBlox - How to use REST API + PHP to create blob content

  19. 19

    how to create an issue in jira using the rest api (java)?

  20. 20

    How to automatically create a REST API node.js / MongoDB

  21. 21

    How to create a new page in Confluence using jQuery and their REST API?

  22. 22

    How to Create a REST API for Yii2-basic-template

  23. 23

    How to create submodule in GitHub using GitHub Rest Api

  24. 24

    How do you create a class diagram for a SPA and a REST API?

  25. 25

    Azure DevOps: How to create a folder in GIT repo with REST API repo

  26. 26

    Azure DevOps: How to create a folder in GIT repo with REST API repo

  27. 27

    How to create a new document in Alfresco via REST API?

  28. 28

    How to batch create users in Parse via REST api

  29. 29

    How to create Tags using docusign PHP REST API

HotTag

Archive