간단한 서버 실행하기

https://github.com/oven-sh/bun

 

GitHub - oven-sh/bun: Incredibly fast JavaScript runtime, bundler, transpiler and package manager – all in one.

Incredibly fast JavaScript runtime, bundler, transpiler and package manager – all in one. - GitHub - oven-sh/bun: Incredibly fast JavaScript runtime, bundler, transpiler and package manager – all i...

github.com

// http.ts
export default {
  port: 3000,
  fetch(request: Request) {
    return new Response("Hello World");
  },
};

// bun ./http.ts

bun 문서에서 제공하는 기본 예제 코드입니다.

서버를 실행하기 전에 ifconfig 명령어를 통해 wsl의 네트워크 IP 주소를 확인하세요
윈도우 브라우저에서 WSL 서버로 접속 확인

 

리액트 서버 실행하기

bun create react ./app
cd app
bun dev

React 프로젝트를 생성하고, 프로젝트 폴더로 이동하여 bun 명령어를 통해 서버를 실행
Welcome to React!

 


https://bun.sh/

 

Bun is a fast all-in-one JavaScript runtime

Bundle, transpile, install and run JavaScript & TypeScript projects – all in Bun. Bun is a new JavaScript runtime with a native bundler, transpiler, task runner and npm client built-in.

bun.sh

 

https://www.youtube.com/watch?v=t9924eteb-4 

 

+ Recent posts