Node.js의 대안으로 Deno를 배우는 방법
다음 자습서에서 이러한 모든 비디오 및 지침을 볼 수 있습니다.
Deno's GitHub repository은 다음과 같은 목표를 설명합니다.
저장소는 또한 Deno가 NodeJS와 어떻게 다른지 설명합니다.
import * as log from "https://deno.land/std@$STD_VERSION/log/mod.ts";
데노 설치
Deno의 웹사이트에는 다양한 운영 체제용 installation instructions이 있으며 전체 소스 코드는 GitHub repo에서 사용할 수 있습니다. macOS를 실행하므로 HomeBrew와 함께 Deno를 설치할 수 있습니다.
$ brew install deno
Linux에서는 Deno 서버에서 설치 스크립트를 다운로드하고 읽고 실행할 수 있습니다.
$ curl -fsSL https://deno.land/x/install/install.sh
$ sh ./install.sh
실행 데노
Deno를 설치한 후 실행하는 가장 쉬운 방법은 다음과 같습니다.
$ deno run https://deno.land/std/examples/welcome.ts
welcome example 을(를) 탐색하면 공룡 아이콘과 함께 "Welcome to Deno"를 인쇄하는 한 줄을 볼 수 있습니다. 다음은 웹 사이트에서도 찾을 수 있는 약간 더 복잡한 버전입니다.
import { serve } from "https://deno.land/[email protected]/http/server.ts";
const s = serve({ port: 8000 });
console.log("http://localhost:8000/");
for await (const req of s) {
req.respond({ body: "Hello World\n" });
}
.tx 확장자로 파일을 저장합니다. 다음과 같이 실행하십시오.
$ deno run --allow-net <name-of-your-first-deno-file.ts>
--allow-net 플래그는 필요하지 않을 수 있지만 error: _Uncaught PermissionDenied: network access to "0.0.0.0:8000.
_
이제 브라우저를 열고 localhost:8080을 방문하십시오. "Hello, World!"가 인쇄되어야 합니다.
Reference
이 문제에 관하여(Node.js의 대안으로 Deno를 배우는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/bryantson/how-to-learn-deno-as-an-alternative-to-nodejs-4dcg텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)