vulcanjs 包类型

npm

添加在pacakge.json 文件中的

meteor core 包

由meteor 框架提供的

meteor remote 包

从包服务器加载的,使用username:package 格式组成

meteor local 包

在本地文件系统,格式也是username:package 格式

vulcan 包

  • 核心包 (vulcan:core)
  • 功能包 (vulcan:accounts 、 vulcan:forms 。。。)
  • 语言包(vulcan:i18n-en-us)
  • 社区包(方便开发的)
  • 账户包(权限管理的)
  • 自定义包(项目代码包含,为了实现功能创建的)

包管理

使用配置,路径在 .meteor/packages 将需要的添加进去,当前全部加载的包在.meteor/versions
参考:

  • .meteor/packages
# see http://docs.vulcanjs.org/packages

vulcan:core@1.11.2

############ Language Packages ############

vulcan:i18n-en-us

############ Accounts Packages ############

accounts-password@1.5.1
# accounts-twitter
# accounts-facebook

############ Your Packages ############

getting-started

# example-simple
# example-movies
# example-instagram
# example-forum
# example-customization
# example-permissions
# example-membership
# example-interfaces
# example-reactions
# example-forms
  • .meteor/versions
accounts-base@1.4.2
accounts-password@1.5.1
allow-deny@1.1.0
autoupdate@1.4.1
babel-compiler@7.1.1
babel-runtime@1.2.7
base64@1.0.11
binary-heap@1.0.10
blaze-tools@1.0.10
boilerplate-generator@1.5.0
buffer@0.0.0
caching-compiler@1.1.12
caching-html-compiler@1.1.3
callback-hook@1.1.0
check@1.3.1
ddp@1.4.0
ddp-client@2.3.3
ddp-common@1.4.0
ddp-rate-limiter@1.0.7
ddp-server@2.2.0
deps@1.0.12
diff-sequence@1.1.0
dynamic-import@0.4.2
ecmascript@0.11.1
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.7.2
ecmascript-runtime-server@0.7.1
ejson@1.1.0
email@1.2.3
es5-shim@4.8.0
fourseven:scss@4.5.4
geojson-utils@1.0.10
getting-started@0.0.0
hot-code-push@1.0.4
html-tools@1.0.11
htmljs@1.0.11
http@1.4.1
id-map@1.1.0
localstorage@1.2.0
logging@1.1.20
meteor@1.9.2
meteorhacks:inject-initial@1.0.4
meteorhacks:picker@1.0.3
minifier-css@1.3.1
minifier-js@2.3.5
minimongo@1.4.4
modern-browsers@0.1.2
modules@0.12.2
modules-runtime@0.10.2
mongo@1.5.1
mongo-dev-server@1.1.0
mongo-id@1.0.7
npm-bcrypt@0.9.3
npm-mongo@3.0.11
ordered-dict@1.1.0
percolatestudio:synced-cron@1.1.0
promise@0.11.1
random@1.1.0
rate-limit@1.0.9
reactive-dict@1.2.1
reactive-var@1.0.11
reload@1.2.0
retry@1.1.0
routepolicy@1.0.13
server-render@0.3.1
service-configuration@1.0.11
session@1.1.8
sha@1.0.9
shell-server@0.3.1
socket-stream-client@0.2.2
spacebars-compiler@1.1.3
srp@1.0.12
standard-minifier-css@1.4.1
standard-minifier-js@2.3.4
static-html@1.2.2
templating-tools@1.1.2
tracker@1.2.0
underscore@1.0.10
url@1.2.0
vulcan:accounts@1.12.3
vulcan:core@1.12.3
vulcan:debug@1.12.3
vulcan:email@1.12.3
vulcan:forms@1.12.3
vulcan:i18n@1.12.3
vulcan:i18n-en-us@1.12.3
vulcan:lib@1.12.3
vulcan:routing@1.12.3
vulcan:ui-bootstrap@1.12.3
vulcan:users@1.12.3
webapp@1.6.2
webapp-hashing@1.0.9

参考资料

http://docs.vulcanjs.org/packages.html