Advertisement
Guest User

Untitled

a guest
Jul 25th, 2013
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. # Meteor
  2.  
  3. Meteor is an ultra-simple environment for building modern web
  4. applications.
  5.  
  6. With Meteor you write apps:
  7.  
  8. * in pure Javascript
  9. * that send data over the wire, rather than HTML
  10. * using your choice of popular open-source libraries
  11.  
  12. Documentation is available at http://docs.meteor.com/
  13.  
  14. ## Quick Start
  15.  
  16. Install Meteor:
  17.  
  18. curl https://install.meteor.com | /bin/sh
  19.  
  20. Create a project:
  21.  
  22. meteor create try-meteor
  23.  
  24. Run it:
  25.  
  26. cd try-meteor
  27. meteor
  28.  
  29. Deploy it to the world, for free:
  30.  
  31. meteor deploy try-meteor.meteor.com
  32.  
  33. ## Slow Start (for developers)
  34.  
  35. If you want to run on the bleeding edge, or help develop Meteor, you
  36. can run Meteor directly from a git checkout.
  37.  
  38. git clone git://github.com/meteor/meteor.git
  39. cd meteor
  40.  
  41. If you're the sort of person who likes to build everything from scratch,
  42. you can build all the Meteor dependencies (node.js, npm, mongodb, etc)
  43. with the provided script. If you do not run this script, Meteor will
  44. automatically download pre-compiled binaries when you first run it.
  45.  
  46. # OPTIONAL
  47. ./scripts/generate-dev-bundle.sh
  48.  
  49. Now you can run meteor directly from the checkout (if you did not
  50. build the dependency bundle above, this will take a few moments to
  51. download a pre-build version).
  52.  
  53. ./meteor --help
  54.  
  55. From your checkout, you can read the docs locally. The `/docs` directory is a
  56. meteor application, so simply change into the `/docs` directory and launch
  57. the app:
  58.  
  59. cd docs/
  60. meteor
  61.  
  62. You'll then be able to read the docs locally in your browser at
  63. `http://localhost:3000/`
  64.  
  65. Note that if you run Meteor from a git checkout, you cannot pin apps to specific
  66. Meteor releases or run using different Meteor releases using `--release`.
  67.  
  68. ## Uninstalling Meteor
  69.  
  70. Aside from a short launcher shell script, Meteor installs itself inside your
  71. home directory. To uninstall Meteor, run:
  72.  
  73. rm -rf ~/.meteor/
  74. sudo rm /usr/local/bin/meteor
  75.  
  76. ## Developer Resources
  77.  
  78. Building an application with Meteor?
  79.  
  80. * Announcement list: sign up at http://www.meteor.com/
  81. * Ask a question: http://stackoverflow.com/questions/tagged/meteor
  82. * Meteor help and discussion mailing list: https://groups.google.com/group/meteor-talk
  83. * IRC: `#meteor` on `irc.freenode.net`
  84.  
  85. Interested in contributing to Meteor?
  86.  
  87. * Core framework design mailing list: https://groups.google.com/group/meteor-core
  88. * Contribution guidelines: https://github.com/meteor/meteor/tree/devel/Contributing.md
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement