Meteor js and multiplayer games

雨燕双飞 提交于 2019-12-06 10:57:52

Meteor is by far the best of the best technology available among the other realtime technologies. Meteor is so efficiently fast both in terms of memory management and request handling. I have already deployed a Meteor on a CENTOS Linux distribution VPS server (Ideally you must choose DebianOS for its ease of deployment with just one command "mup").

Meteor is full stack ready packaged material where you just need to have JavaScript knowledge and Meteor know how. Below are some other realtime technologies available in market like,

  1. PHP(Laravel/ Yii2) + REDIS + SOCKET.IO OR
  2. JAVA(Play Framework) + HAZELCAST + SOCKET.IO OR
  3. REACT + FLUX OR
  4. REACT + REDUX, Polymer etc.

You will have to learn every framework and study the performance benchmarking on your system, whereas in Meteor, you just need to kick start with framework. Meteor learning curves is almost flat, if you are ok with javascript, you can definitely go for Meteor JS.

To start learning via videos , below are the links

  1. Intermediate LevelUp tuts
  2. Basic Walkthrough for Meteor 1.4

You can easily install Meteor on your machine. then just run command below at you desired directory level;

meteor create --full your-project-name

With above project you wil understand the basic flow of latest architecture and folder structure of Meteor 1.4.4.2 latest.

NOTE : Meteor is heavily funded as I know and has drasctically grown with its community support. I have worked on all above mentioned technologies, Meteor reduces your project development efforts by more than half of time and man power. You can develop a Huge website alone with Meteor without needing man power for it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!