React-T

所属分类:聚类算法
开发工具:JavaScript
文件大小:133KB
下载次数:0
上传日期:2018-01-14 13:47:05
上 传 者sh-1993
说明:  新闻聚合类应用
(News aggregation applications)

文件列表:
.babelrc (16, 2018-01-13)
.csscomb.json (8072, 2018-01-13)
.csslintrc (456, 2018-01-13)
.editorconfig (421, 2018-01-13)
.eslintrc (1512, 2018-01-13)
.jscsrc (106, 2018-01-13)
.travis.yml (51, 2018-01-13)
adaptor.js (3064, 2018-01-13)
docs (0, 2018-01-13)
docs\data-fetching.md (1152, 2018-01-13)
docs\getting-started.md (3694, 2018-01-13)
docs\how-to-configure-text-editors.md (2742, 2018-01-13)
docs\react-style-guide.md (5648, 2018-01-13)
docs\recipes (0, 2018-01-13)
docs\recipes\how-to-implement-routing.md (4274, 2018-01-13)
docs\recipes\how-to-integrate-disqus.md (1900, 2018-01-13)
docs\recipes\using-npm-and-webpack-as-a-build-tool.md (2650, 2018-01-13)
entries (0, 2018-01-13)
entries\index.html (843, 2018-01-13)
package.json (2960, 2018-01-13)
preprocessor.js (672, 2018-01-13)
src.zip (27383, 2018-01-13)
src (0, 2018-01-13)
src\Index.js (1373, 2018-01-13)
src\api (0, 2018-01-13)
src\api\ApiConfig.js (515, 2018-01-13)
src\api\ApiService.js (2382, 2018-01-13)
src\api\HttpClient.js (1270, 2018-01-13)
src\components (0, 2018-01-13)
src\components\APP (0, 2018-01-13)
src\components\APP\App.js (13641, 2018-01-13)
src\components\APP\App.less (268, 2018-01-13)
src\components\APP\package.json (83, 2018-01-13)
src\components\BottomBar (0, 2018-01-13)
src\components\BottomBar\BottomBar.js (902, 2018-01-13)
src\components\BottomBar\BottomBar.less (2516, 2018-01-13)
... ...

## React Starter Kit — "isomorphic" web app boilerplate > [React Starter Kit](https://www.reactstarterkit.com) is an opinionated > boilerplate for web development built on top of Facebook's > [React](https://facebook.github.io/react/) library, > [Node.js](https://nodejs.org/) / [Express](http://expressjs.com/) server > and [Flux](http://facebook.github.io/flux/) architecture. Containing > modern web development tools such as [Webpack](http://webpack.github.io/), > [Babel](http://babeljs.io/) and [BrowserSync](http://www.browsersync.io/). > Helping you to stay productive following the best practices. A solid starting > point for both professionals and newcomers to the industry. See [demo](http://demo.reactstarterkit.com)  |  [docs](https://github.com/kriasoft/react-starter-kit/tree/master/docs)  |  [bugs & feature requests](https://waffle.io/kriasoft/react-starter-kit)  |  join [#react-starter-kit](https://gitter.im/kriasoft/react-starter-kit) chatroom to stay up to date  |  visit our sponsors: ### Getting Started * Follow the [getting started guide](./docs/getting-started.md) to download and run the project * Check the [code recipes](./docs/recipes) used in this boilerplate, or share yours ### Directory Layout ``` . ├── /build/ # The folder for compiled output ├── /docs/ # Documentation files for the project ├── /node_modules/ # 3rd-party libraries and utilities ├── /src/ # The source code of the application │ ├── /actions/ # Action creators that allow to trigger a dispatch to stores │ ├── /api/ # REST API / Relay endpoints │ ├── /components/ # React components │ ├── /constants/ # Constants (action types etc.) │ ├── /content/ # Static content (plain HTML or Markdown, Jade, you name it) │ ├── /core/ # Core framework and utility functions │ ├── /decorators/ # Higher-order React components │ ├── /public/ # Static files which are copied into the /build/public folder │ ├── /stores/ # Stores contain the application state and logic │ ├── /client.js # Client-side startup script │ ├── /config.js # Global application settings │ ├── /routes.js # Universal (isomorphic) application routes │ └── /server.js # Server-side startup script ├── /tools/ # Build automation scripts and utilities │ ├── /lib/ # Library for utility snippets │ ├── /build.js # Builds the project from source to output (build) folder │ ├── /bundle.js # Bundles the web resources into package(s) through Webpack │ ├── /clean.js # Cleans up the output (build) folder │ ├── /copy.js # Copies static files to output (build) folder │ ├── /deploy.js # Deploys your web application │ ├── /run.js # Helper function for running build automation tasks │ ├── /runServer.js # Launches (or restarts) Node.js server │ ├── /start.js # Launches the development web server with "live reload" │ └── /webpack.config.js # Configurations for client-side and server-side bundles │── package.json # The list of 3rd party libraries and utilities └── preprocessor.js # ES6 transpiler settings for Jest ``` ### Related Projects * [React Static Boilerplate](https://github.com/koistya/react-static-boilerplate) — Generates static websites from React components * [Babel Starter Kit](https://github.com/kriasoft/babel-starter-kit) — Boilerplate for authoring JavaScript/React.js libraries * [React Decorators](https://github.com/kriasoft/react-decorators) — A collection of higher-order React components ### Learn More * [Getting Started with React.js](http://facebook.github.io/react/) * [Getting Started with GraphQL and Relay](https://quip.com/oLxzA1gTsJsE) * [React.js Questions on StackOverflow](http://stackoverflow.com/questions/tagged/reactjs) * [React.js Discussion Board](https://discuss.reactjs.org/) * [Flux Architecture for Building User Interfaces](http://facebook.github.io/flux/) * [Jest - Painless Unit Testing](http://facebook.github.io/jest/) * [Flow - A static type checker for JavaScript](http://flowtype.org/) * [The Future of React](https://github.com/reactjs/react-future) * [Learn ES6](https://babeljs.io/docs/learn-es6/), [ES6 Features](https://github.com/lukehoban/es6features#readme) ### Support * [#react-starter-kit](https://gitter.im/kriasoft/react-starter-kit) on Gitter — Feedback, feature requests, Q&A * [@koistya](https://www.codementor.io/koistya) on Codementor — Mentorship, pair coding, code reviews * support@kriasoft.com — Customization requests, help with GraphQL/Relay, database design etc. ### License Copyright 2014-2015 Kriasoft, LLC. This source code is licensed under the MIT license found in the [LICENSE.txt](https://github.com/kriasoft/react-starter-kit/blob/master/LICENSE.txt) file. The documentation to the project is licensed under the [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/) license. --- Made with by Konstantin Tarkus ([@koistya](https://twitter.com/koistya)) and [contributors](https://github.com/kriasoft/react-starter-kit/graphs/contributors)

近期下载者

相关文件


收藏者