zoukankan      html  css  js  c++  java
  • Meteor第一个应用程序

    这一个小教程将教你如何建立你的第一个 Meteor 应用程序。

    步骤 1 - 创建App

    要创建应用程序,我们将从命令提示符窗口运行 meteor create 命令。该应用程序的名称是 meteorApp

    C:UsersAdministratorDesktopMeteor>meteor create meteorApp
    这将会创建一个名为 meteorApp 的 Meteor 应用程序所产生的文件和新文件夹如下结构所示:
    client/main.js # a JavaScript entry point loaded on the client client/main.html # an HTML file that defines view templates client/main.css # a CSS file to define your app's styles server/main.js # a JavaScript entry point loaded on the server package.json # a control file for installing NPM packages .meteor # internal Meteor files .gitignore # a control file for git

    步骤 2 - 运行App

    我们可以通过键入 meteor 命令运行应用程序。
    C:UsersAdministratorDesktopMeteormeteorApp>meteor
    
    此命令将启动多个进程。你可以从下面的图像中看到。
    步骤3 - 验证结果
    现在,可以打开URL地址:http://localhost:3000/,看你的第一个 Meteor 应用程序运行的样子。
  • 相关阅读:
    操作标签的属性和属性值 table表格
    dom基本获取 标签文本操作
    延时器 清除延时器
    倒计时
    电子时钟
    时间戳
    设定时间的方法
    内置对象Date
    对象的基本特点
    终于有人把云计算、大数据和 AI 讲明白了【深度好文】
  • 原文地址:https://www.cnblogs.com/h2zZhou/p/7389889.html
Copyright © 2011-2022 走看看