React+NodeJS

React+NodeJS_第1张图片

create server

React+NodeJS_第2张图片


React+NodeJS_第3张图片

create our first index.js file.

React+NodeJS_第4张图片

run


React+NodeJS_第5张图片


For deploy:


React+NodeJS_第6张图片


React+NodeJS_第7张图片

Deploy的初始化太痛苦了。。。。Heroku版本更新了好多跟以前好不一样 需要node 8.3版本以上才能玩。我还不知道怎么upgrade node.

React+NodeJS_第8张图片

最后发现,要先install n. 然后 sudo n latest.

React+NodeJS_第9张图片

然后Heroku create后还不能直接push heroku master, 要先add remote...

React+NodeJS_第10张图片

后来一直Build失败

1. cannot detect the language 要自己加

2. doesn't detect package.json for some reasons... 所以我重新git init了一下, add 了一下package.json

React+NodeJS_第11张图片






React+NodeJS_第12张图片
React+NodeJS_第13张图片

Express basic:

Express route handler

React+NodeJS_第14张图片
React+NodeJS_第15张图片

如果有人访问localhost:5000/  返回

React+NodeJS_第16张图片

Mongoose vs MongoDB:

React+NodeJS_第17张图片

下载Passport

Google API 网址:

React+NodeJS_第18张图片

Enable API

React+NodeJS_第19张图片

Search for Google+  不能在这里search OAuth...

React+NodeJS_第20张图片


React+NodeJS_第21张图片

然后使用OAuth client ID


React+NodeJS_第22张图片

Now, put public, secret keys on a new file called key.js Then import it.

here it's requiring the original passport NPM modules

React+NodeJS_第23张图片

nodemon的作用:Nodemon is a utility that will monitor for any changes in your source and automatically restart your server.

React+NodeJS_第24张图片


npm run dev


设置MongoDB:

https://mlab.com/welcome/?gclid=EAIaIQobChMItYrNtrXA2AIVjrXACh1_fwo5EAAYASAAEgI06vD_BwE


React+NodeJS_第25张图片

now add database user

React+NodeJS_第26张图片

now install moogse


React+NodeJS_第27张图片


React+NodeJS_第28张图片



React+NodeJS_第29张图片


React+NodeJS_第30张图片


这里有一个Bug我查了10分钟。。。

如果require Module的顺序不对会报错。我们需要先connect to DB. 然后创造User schema. 然后再require passport service. 否则如果先require Passport, schema还没写好就会出错。然后值得注意的是: schema 不是写了User.js就会执行,而是要require才能执行

然后如果没写app.use(passport.initialize())那个也会报错。。有待研究。。。

”(node:64987) UnhandledPromiseRejectionWarning: Error: passport.initialize() middleware not in use“

React+NodeJS_第31张图片



To run front end and backend together

In server directory:

React+NodeJS_第32张图片
React+NodeJS_第33张图片

重要概念:Proxy  用来连通前端和后端API

假设现在在前端HTML里写这么一个link, 点下去调用后端 localhost:5000/auth/google

但是由于前端在localhost:3000  domain 会不一样。如果强行specify 一个 localhost:5000/auth/google  这样在Production的时候也很麻烦。所以我们可以使用Proxy

React+NodeJS_第34张图片

在client的package.json里:


React+NodeJS_第35张图片

在react side:

index.js 是for redux

app.js is a single component, it's a react layer.

React+NodeJS_第36张图片

install一些react的dependency

React+NodeJS_第37张图片

Convention:


React+NodeJS_第38张图片

不知道是不是版本问题,如果不使用class based component的话会报错,并且default keyword is important

React+NodeJS_第39张图片


React+NodeJS_第40张图片


Provider tag is a react component. Anytime app gets updated, provider will update all of different componets inside and update states.

声明一个redux data store


React+NodeJS_第41张图片

这里有一个坑, tag之间是不能够有space的

React+NodeJS_第42张图片

Now创建一个新的Folder 叫reducers, 里面有reducer 部分的代码。export function.

React+NodeJS_第43张图片


react前端的routing部分

Always visible component:

使用Exact keyword, 这样的话  Landing component只有完整match URL的时候才会显示。

React+NodeJS_第44张图片

Routing部分

React+NodeJS_第45张图片

然后最好把各个component 比如header, dashboard 单独分出成为一个class file。


Routing里 是可以嵌套文字的:


React+NodeJS_第46张图片

使用CSS: npm install后会把css文件存在你的Node_module dependency里。



webpack with CSS:

webpack is a module loader. 


React+NodeJS_第47张图片

import css 


http://materializecss.com/



React前后端连接,使用backend的API

currentuser API: 如果是signed in的,服务器会返回who signed in. Whenever server boots up, use this route.

React+NodeJS_第48张图片


React+NodeJS_第49张图片


React+NodeJS_第50张图片

axios  不是很清楚干嘛的。。。

redux-thunk:

in client side

actionCreator

React+NodeJS_第51张图片


React+NodeJS_第52张图片



React+NodeJS_第53张图片

In front end App.js, change App to class based component by import {componet}


React+NodeJS_第54张图片


React+NodeJS_第55张图片

The moment when this component rendered, go fetch!

React+NodeJS_第56张图片

import these for react-redux: 

connect function to give certain component the ability to call the action

then import all the different action_creators!!!


React+NodeJS_第57张图片

In header component:

目标:






React+NodeJS_第58张图片

server side index.js里 调用cookie session这块卡了一天。。。最后在stackoverflow找到解决办法。。

original version..根本不会调用deserialize function..

React+NodeJS_第59张图片
React+NodeJS_第60张图片

null corresponds to loading时候。

React+NodeJS_第61张图片


redirect log in:

目前输入google账号后悔redirect到这里。

React+NodeJS_第62张图片

in Backend: pass control to Google.

passport.authentificate is actually a MiddleWare. We have not specified after middleware complete. So right now, it's just report you cannot get this route!

So we need to add another handler. so that the middleware will pass to the next handler.

pass it to the /survey handlers


React+NodeJS_第63张图片

Log out follows the same idea.

React+NodeJS_第64张图片


Now 前端:

先下载一下create-react-app

React+NodeJS_第65张图片

Then

你可能感兴趣的:(React+NodeJS)