The most recent versions of Meteor ship with support for ecmascript
, aka ES6 or ES2015. Instead of packages, Javascript now supports import
statements and modules, which replaces the need for package-only applications. The latest directory structure is similar to the package-only structure, but uses the /imports
directory instead of /packages
.
imports #
imports/api # isomorphic methods
imports/lib # any common code for client/server
imports/client # client application code
imports/server # server code