react-dashboard

授权协议 Readme
开发语言 JavaScript
所属分类 Web应用开发、 常用JavaScript包
软件类型 开源软件
地区 不详
投 递 者 柴英锐
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

React Dashboard — "isomorphic" admin dashboard template

built with React, Bootstrap, React Router,Redux and GraphQL based onCreate React App and latest industry best practices.

View Demo | Download | More templates | Support forum

This seed project is a sort of a free version of a template that may be found onThemeforestor Wrapbootstrap with working backend integration.You may use it to bootstrap the development of your next web app.

Features

  • React
  • Mobile friendly layout (responsive)
  • React Router
  • Bootstrap3
  • GraphQL
  • Nodejs backend inegration
  • Sass styles
  • Stylish, clean, responsive layout
  • Lots of utility css classes for rapid development (flatlogic css set)
  • Authentication
  • CRUD operations examples

Quick Start

1. Get the latest version

You can start by cloning the latest version of React Dashboard on yourlocal machine by running:

$ git clone -o react-dashboard -b master --single-branch \
      https://github.com/flatlogic/react-dashboard.git MyApp
$ cd MyApp

2. Run yarn install

This will install both run-time project dependencies and developer tools listedin package.json file.

3. Run yarn dev

This command will start the app with simultaneously with express server,set up your database, start local server XAMPP, opensever, or other toolto start database, connect to it in file

src > data > sequelize.js.

Also go to

src > data > schema.js

and enable mutation. This preparationwill enable to realize CRUD operations locally

4. How to create db

Create db. For instance name it "sequelize" and add posts table to it,your table should have same structure as you can see on the screenshot

http://localhost:3000/ — Node.js server
http://localhost:3000/graphql — GraphQL server and IDE

Now you can open your web app in a browser, on mobile devices and starthacking. Whenever you modify any of the source files inside the /src folder,the module bundler (Webpack) will recompile theapp on the fly and refresh all the connected browsers.

For more info please refer to getting started guide to download and run the project (Node.js >= 6.5)

Support

For any additional information please go to our support forum and raise your questions or feedback provide there. We highly appreciate your participation!

How can I support developers?

Premium themes

Looking for premium themes and templates? Check out more admin dashboard templates at flatlogic.com.

License

MIT and another MIT from RSK.

 相关资料
  • 问题内容: 我注意到可以这样导入: …或像这样: 第一个导入模块中的所有内容(请参阅:导入整个模块的内容) 第二个仅导入模块导出(请参阅:导入默认值) 似乎这两种方法是不同的,并且根本上是不兼容的。 为什么它们都起作用? 请参考源代码并解释该机制…我有兴趣了解其工作原理。 ES6常规模块信息回答了该问题。 我在问使模块像这样工作的机制。在这里,它似乎与源代码中的 “ hacky”导出机制有关,但尚

  • 这篇快速上手指南会教你如何将TypeScript与React结合起来使用。 在最后,你将学到: 使用TypeScript和React创建工程 使用TSLint进行代码检查 使用Jest和Enzyme进行测试,以及 使用Redux管理状态 我们会使用create-react-app工具快速搭建工程环境。 这里假设你已经在使用Node.js和npm。 并且已经了解了React的基础知识。 我们之所以使

  • 我已经改用react Native制作跨平台应用程序(虽然没有制作)。我只是想要一个答案,我的问题,反应和反应之间的区别。我在网上搜索了一下,但没有找到合适的答案。

  • 问题内容: 与 哪个更好,为什么? 还是除了以后编写更少的代码外没有其他区别? 写作是否意味着只导入Component对象? 问题答案: 让您代替。它减少了React名称空间的键入和重复,这通常是一种理想的现代编码约定。 此外,Webpack 2和Rollup之类的工具会“摇晃”,这意味着任何未使用的导出都不会捆绑到您的最终代码中。使用/,您可以保证所有React的源代码都将被捆绑。使用,某些工具

  • 本文向大家介绍react-native 启动React Native Packager,包括了react-native 启动React Native Packager的使用技巧和注意事项,需要的朋友参考一下 示例 在最新版本的React Native上,无需运行打包程序。它将自动运行。 默认情况下,这将在端口8081上启动服务器。要指定服务器所在的端口            

  • 我正在使用“React admin”创建一个管理界面(前端)。我正在使用spring boot作为我的REST API。我的React应用程序的url是:“http://localhost:3000”。我的spring boot API的url是:“http://localhost:8080”。 下面是CORS配置的spring boot代码,它在一个单独的类中,称为CORSCONFIG: 下面是