Meteor codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.
This codebase was created to demonstrate a fully fledged fullstack application built with Meteor including CRUD operations, authentication, routing, pagination, and more.
We've gone to great lengths to adhere to the Meteor community styleguides & best practices.
For more information on how to this works with other frontends/backends, head over to the MeteorRealWorld repo.
Meteor will build everything, client and server then start the server on port 3000
First install meteor. You can follow instruction on their install page.
or follow those instruction
On MacOS or Linux
curl https://install.meteor.com/ | sh
On Windows
First install Chocolatey, then run this command using an Administrator command prompt:
choco install meteor
To install dependencies you just need to run npm but with the meteor version.
meteor npm install
to start the project simply run
meteor npm start