5

在我看来,保守的秘密是 material-ui,一个使用 Google 的Material Design UI和 React 的网络框架。我认为这是一个奇妙的组合,以及未来。但是,如何使用它也是一个保存完好的秘密。http://material-ui.com/#/get-started上的入门指南不适用于普通的 Joe,而仅适用于可能理解它的一小部分人。此外,这里的问题,比如如何使用material-ui框架?材料ui安装配置,一直没有回答。

我设法安装了material-ui,

  $ npm install material-ui
  react-tap-event-plugin@0.1.6 node_modules/react-tap-event-plugin

  react@0.13.2 node_modules/react
   envify@3.4.0 (through@2.3.7, jstransform@10.1.0)

  material-ui@0.7.4 node_modules/material-ui
   classnames@1.2.1
   react-draggable2@0.5.1

  $ ls -d1 node_modules/*
  node_modules/material-ui
  node_modules/react
  node_modules/react-tap-event-plugin

但下一步是什么?

  • 我应该把它们移到我的下面/var/www/吗?还是启动nodejs,还是……?
  • 如何查看显示一切正常的简单演示?

总而言之,作为一个只知道 http 服务器和静态 html 页面的人,我看到它在我自己的环境中使用我现有的 web 服务器的最简单方法是什么?

谢谢

$ lsb_release -a 
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.10
Release:        14.10
Codename:       utopic

$ uname -srmv
Linux 3.16.0-34-generic #47-Ubuntu SMP Fri Apr 10 18:02:58 UTC 2015 x86_64
4

1 回答 1

4

要开始一个示例,只需按照github的说明进行操作。

cd <project folder>/material-ui/example
npm install
npm start

并在浏览器中打开http://localhost:8000/ 。

于 2015-04-23T14:28:23.927 回答