JavaScript (Node.js) for Backend

차노·2023년 8월 13일
0

JS

목록 보기
40/96

Advantage

  • Single Language: If your frontend is already built using JavaScript (such as in web development), using Node.js on the backend allows you to use the same language across the entire stack, making development and code sharing easier.

    단일 언어: 자바스크립트를 이용하여 프론트앤드를 이미 했더라면, 백엔드인 노드js를 이용하는 것은 전체 스택을 통해 같은 언어를 사용하게 하며, 이는 코드 공유와 개발을 용이하게 한다. => 풀스택 접근에 용이하다.

  • Asynchronous and Non-blocking: Node.js is known for its non-blocking I/O operations, which can lead to efficient handling of concurrent requests, making it suitable for real-time applications like chats and gaming.

    노드 js는 동시 요청을 핸들링하는 I/O 수행에 non-blocking으로 알려져 있으며, 이는 게임과 대화 같은 동시간대의 애플리케이션을 수행하는 데 적합하다.

  • Vibrant Ecosystem: The Node.js ecosystem has a rich collection of open-source libraries and frameworks that can help streamline development.

    노드 js 생태계는 개발을 조금 더 효율적으로 만드는 풍부한 오픈소스 라이브러리, 프레임워크를 가지고 있다.

  • Fast Development: The use of javaScript throughout the stack can lead to faster developemnt cycles since developers don't need to context switch between languages.

    개발자가 언어 사이에서 변화를 하지 않아도 되기 때문에 스택 전체의 자바스크립트 사용은 빠른 개발 사이클을 가능하게 한다.

0개의 댓글