반응형
example.js
import path from 'path'
const outputPath = path.resolve(__dirname, 'dist')
console.log(`Output path is "${outputPath}".`);
package.json
{
"scripts": {
"start": "babel-node example.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-node": "^0.0.1-security",
"babel-preset-env": "^1.7.0"
}
}
.babelrc
{
"presets": ["env"]
}
모듈 설치
yarn install
실행
# 실행
yarn start
# 명령어로 실행
babel-node example.js
# 컴파일된 결과로 실행
npx babel example.js | node
참고
반응형
'Development > NodeJS' 카테고리의 다른 글
[NodeJS] http 모듈을 활용한 웹서버 예제 (0) | 2020.12.29 |
---|---|
[NodeJS] Javascript를 Shell Script처럼 실행하기 (0) | 2020.12.29 |
[NodeJS] prettier, eslint 설정 (0) | 2020.12.29 |
[NodeJS] Node 설치하기 (0) | 2020.12.29 |
[NodeJS] babel plugin 만들기 (0) | 2019.11.14 |