IT News/Computer

install nodejs in ubuntu server (Nodejs 우분트 서버에 설치하기)

skyLove1982 2023. 9. 26. 00:48
반응형

#delete the new package source
sudo rm /etc/apt/sources.list.d/nodesource.list

#update apt, fix the install, remove nodejs and the nodejs-doc packages
sudo apt --fix-broken install
sudo apt update
sudo apt remove nodejs
sudo apt remove nodejs-doc
Then install node & npm normally

# Then install node & npm normally
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs

 

추가적으로 svelt deply 관련 참고

# https://svelte.dev/docs/introduction
npm create svelte@latest myapp
cd myapp

 

# https://codepilotsf.medium.com/how-to-deploy-a-sveltekit-node-app-1c11171fe852
npm i -D @sveltejs/adapter-node@next

npm install
npm run build


반응형