강의

멘토링

커뮤니티

BEST
Programming

/

Full-stack

[Renewal] Creating NodeBird SNS with React

Let's create a Twitter-like SNS service with React & Next & Redux & Redux Saga & Express stack. Finally, we will deploy it to AWS after SEO.

(4.9) 177 reviews

3,711 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