├── .gitignore ├── README.md ├── app.js ├── client ├── static │ ├── css │ │ └── style.css │ ├── js │ │ ├── store │ │ │ └── main │ │ │ │ └── index.js │ │ └── view │ │ │ └── main │ │ │ └── index.js │ ├── output │ │ └── js │ │ │ └── view │ │ │ └── main │ │ │ └── index.bundle.js │ └── webpack.config.js └── view │ └── index.html ├── package.json └── server ├── action └── data │ └── getMessage.js └── data └── getMessage.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/app.js -------------------------------------------------------------------------------- /client/static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/static/js/store/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/client/static/js/store/main/index.js -------------------------------------------------------------------------------- /client/static/js/view/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/client/static/js/view/main/index.js -------------------------------------------------------------------------------- /client/static/output/js/view/main/index.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/client/static/output/js/view/main/index.bundle.js -------------------------------------------------------------------------------- /client/static/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/client/static/webpack.config.js -------------------------------------------------------------------------------- /client/view/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/client/view/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/package.json -------------------------------------------------------------------------------- /server/action/data/getMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/server/action/data/getMessage.js -------------------------------------------------------------------------------- /server/data/getMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hantingting/React-Nodejs-Project-Quickly-Start/HEAD/server/data/getMessage.js --------------------------------------------------------------------------------