반응형

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

참고

반응형

+ Recent posts