강의

멘토링

로드맵

BEST
Programming

/

Full-stack

[Renewal] Creating a NodeBird SNS with React

We will create a Twitter-like SNS service using the React & Next & Redux & Redux-Saga & Express stack. Finally, we will perform search engine optimization and deploy it to AWS.

(4.9) 178 reviews

3,713 learners

Level Intermediate

Course period Unlimited

  • zerocho
React
React
Redux
Redux
Node.js
Node.js
Express
Express
Next.js
Next.js
React
React
Redux
Redux
Node.js
Node.js
Express
Express
Next.js
Next.js
zerocho님의 프로필 이미지

Edited

ERR_OSSL_EVP_UNSUPPORTED error related

Those who are receiving this error are likely using Node version 18 or higher.

After doing npm i cross-env , change package.json as follows. Just add NODE_OPTIONS to the command. The same goes for other commands that use next .

"scripts": { "dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider next -p 3060",
Comment