노드 v14.3.0이 출시되었습니다. 안녕 데노?
3824 단어 denowebdevjavascriptnode
Deno와 마찬가지로 이제 비동기 함수 외부에서 await 키워드를 사용할 수 있습니다.
예제를 살펴보겠습니다.
API에서 임의의 사용자를 가져와서 인사하겠습니다.
// hello.js
export const sayHello = (name) => `Hello, ${name}!`;
// index.js
import axios from "axios";
import { sayHello } from "./hello.js";
const { data } = await axios.get("https://api.namefake.com/");
console.log(sayHello(data.name));
값이
type
인 package.json
파일에 module
속성을 추가합니다.{
"name": "node-14.3.0",
"version": "0.0.0",
"main": "index.js",
"type": "module",
"dependencies": {
"axios": "^0.20.0"
}
}
--harmony-top-level-await
플래그로 실행하십시오.node --harmony-top-level-await index.js
산출:
Hello, Miss Mellie Mosciski!
Node가 마침내 원격 가져오기를 지원하면 Deno의 관에 못을 박는 것입니다.
표지 사진 by @cookiethepom on Unsplash
Reference
이 문제에 관하여(노드 v14.3.0이 출시되었습니다. 안녕 데노?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/wobsoriano/node-v14-3-0-released-bye-deno-62c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)