Scikit Web

nodejs simple script example 본문

Backend/Node.js

nodejs simple script example

Keun0 2023. 6. 29. 06:34
728x90
반응형
async function main() {
  console.log('start scripts');

  (async () => {
    
  })();
}

main().catch((error) => {
  console.error(error);
  process.exitCode = 1;
});
node [file name]
728x90
반응형

'Backend > Node.js' 카테고리의 다른 글

Error [ERR_REQUIRE_ESM]: require() of ES Module  (0) 2023.09.07
XLXS Server Side Download  (0) 2023.09.04
Node.js Express + NextJS + Typescript  (0) 2022.08.18
Comments