Node js(14)
-
[윈도] chocolatey 로 nodejs 설치하기
chocolatey 설치(chocolatey 가 시스템에 설치되어 있지 않은 경우 다음을 따른다.기존 설치된 chocolatey 를 삭제하려는 경우 C:\ProgramData\chocolatey 를 삭제하면 된다.) 1. PowerShell 을 관리자 권한으로 실행한다.2. PowerShell 에서 다음을 실행한다.Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('h..
2024.12.22 -
`npx create-react-app {PRJ}` 에서 dependency 오류 발생 시
npm install -g yarnyarn create react-app {PRJ}yarn 을 설치한 후에 npx 대신 실행하면 해결됨. 그런데 문제는 설치하는 패키지가 상당히 많음.
2024.12.18 -
[리눅스/안드로이드] node js
[ 목차 ] 안드로이드에 nodejs 설치하기 nodejs 실행하기 termux 에 nodejs 를 설치한다. 테스트할 코드를 작성해본다. (nodejs.org 에서 가져옴)// server.mjs import { createServer } from 'node:http'; const server = createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello World!\n'); }); // starts a simple http server locally on port 3000 server.listen(3000, '127.0.0.1', () => { console.log('Listening ..
2024.06.16 -
nvm 으로 Node.js 설치하기
지금껏 nodejs.org 에 접속해서 바이너리를 직접 받아서 설치해왔는데 의외로 다른 방법들이 있었다. 맥 유저가 아니라서 brew 는 평생 쓸일 없을 것 같고 nvm (node version manager 라고 함) 을 curl 로 내려받은 후 버전을 골라서 설치할 수 있다. # NVM (Node Version Manager) 설치 curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash # 지정한 버전에 해당하는 Node.js 를 다운로드 한다. nvm install 20 # 설치된 node.js 버전을 확인한다. node -v # should print `v20.11.1` 분석 : curl -o- https://..
2024.03.20 -
Hook : useState
참고한 원문 : https://www.w3schools.com/react/react_hooks.asp React HooksW3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.www.w3schools.comHook (훅)은 React v16.8 에서 도입된 기능으로서 state 와 리액트의 여러가지 특성에 액세스할 수 있도록 지원하며 이로 인해 class (리액트 클래스)의 필요성을 없애버렸다. 당분간 clas..
2023.04.07 -
conditional - {true} (O) "true" (X)
https://www.w3schools.com/react/react_conditional_rendering.asp React Conditional RenderingW3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.www.w3schools.com
2023.04.07