0Pricing
Node.js Backend Development Bootcamp · 강의

Node.js와 NPM 입문

Node.js가 무엇인지, 백엔드 개발에서의 장점은 무엇인지, Node 패키지 관리자(NPM)를 어떻게 사용하는지 배웁니다.

Node.js와 NPM 입문은(는) CoddyKit의 무료 Node.js Backend Development Bootcamp 강의입니다. 이것은 4개 중 1번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Node.js Backend Development Bootcamp 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Node.js Backend Development Bootcamp 강의에는 총 4개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

Welcome to Node.js!

Node.js is a server-side JavaScript runtime — an engine that runs your JS outside the browser, right on a server or your own machine.

Why Node.js is Awesome

Why developers love Node.js: one language front to back, blazing V8 speed, non-blocking I/O for high concurrency, and the massive NPM ecosystem.

How Node.js Works

Node uses an event-driven, non-blocking model: it kicks off a task, registers a callback, and moves on — handling tons of connections without waiting around.

Checking Your Node.js Setup

Check your setup with node -v. See a version number? You're good. If not, grab it from nodejs.org.

Your First Node.js Script

Let's write a classic Hello, World. Drop a console.log into a file named app.js — that's a full Node script.

// app.js
console.log("Hello from CoddyKit Node.js!");

Running Your Node.js Code

Run it with node app.js from its folder. Node executes the script and prints your message to the terminal.

Meet NPM (Node Package Manager)

NPM (Node Package Manager) ships with Node and is the world's largest software registry. It installs third-party packages, shares your code, and tracks dependencies.

Starting a New Project with NPM

Start a project with npm init. It walks you through creating package.json — the file holding your project's metadata and dependency list.

Installing Packages with NPM

Add a library with npm install express. NPM downloads it into node_modules and records it in your package.json.

Quick Check on Node.js & NPM

Let's test your understanding of Node.js and NPM.

Recap: Node.js & NPM Fundamentals

You've got the basics: Node.js runs JS on the server, and NPM manages packages via node, npm init, and npm install. Next: modules.

자주 묻는 질문

“Node.js와 NPM 입문” 강의는 무료인가요?

네 — “Node.js와 NPM 입문” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Node.js Backend Development Bootcamp 강의 전체를 잠금 해제할 수 있습니다. Node.js Backend Development Bootcamp 강의에는 총 4개의 강의가 포함되어 있습니다.

“Node.js와 NPM 입문”에서 뭘 배우나요?

Node.js가 무엇인지, 백엔드 개발에서의 장점은 무엇인지, Node 패키지 관리자(NPM)를 어떻게 사용하는지 배웁니다. 브라우저에서 직접 실행하는 실습 코드로 Node.js Backend Development Bootcamp을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

Node.js Backend Development Bootcamp을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 Node.js Backend Development Bootcamp은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 1번째 강의입니다.

“Node.js와 NPM 입문” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 Node.js Backend Development Bootcamp 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 Node.js Backend Development Bootcamp 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. Node.js와 NPM 입문
  2. Node.js 모듈 시스템 설명
  3. 비동기 JavaScript와 이벤트 루프
  4. 파일 시스템 및 스트림 다루기
← Node.js Backend Development Bootcamp(으)로 돌아가기