美文网首页
关于react

关于react

作者: Sollrei | 来源:发表于2016-08-25 11:40 被阅读0次

    Directory structure

    + myapp
        |
        + build
        + node_module
        + src
            |
            - actions
                - appAction.js
            - components
                - app.react.js
            - dispatcher
                - dispatcher.js
            - stores
                - appStore.js
            - app.js
            - bundle.js
        - index.html
        - package.json
        - README.md
    
    

    Browserify

    官网

    npm install -g browserify
    
    browserify main.js > bundle.js
    
    

    Browserify —— 利用Node.js实现JS模块化加载

    Flux

    官网

    Flux 傻瓜教程

    Tutorial – Todo List

    React

    官网

    中文

    ReactJS 傻瓜教程

    Thinking in React

    • Is it passed in from a parent via props? If so, it probably isn't state.
    • Does it change over time? If not, it probably isn't state.
    • Can you compute it based on any other state or props in your component? If so, it's not state.

    React Hot Loader

    Tweak React components in real time.

    React Router

    中文

    react-tools

    npm install -g react-tools
    
    jsx --watch src/ build  
    
    

    學習 React.js:瞭解 Flux,React.js 的架構

    webpack

    github

    其他

    NodeJS中 package.json 解析

    相关文章

      网友评论

          本文标题:关于react

          本文链接:https://www.haomeiwen.com/subject/lpxasttx.html