Can I specify es6 inside node js file

In order to use es6, we pass the harmony flag in the command line

node --harmony myscript.js

Is there a way to do this from inside the file, such as use harmony ?

#! /usr/bin/node
use harmony

class MyScript {
    constructor (options) {
        this.options = options;
    }
    get options () {
        return this.options
    }
}

If your intention is to do this just so that you can run the script directly like ./myscript.js you could use this:

#!/bin/sh
':' //; exec node --harmony "$0" "$@";

class MyScript {
    constructor (options) {
        this.options = options;
    }
    get options () {
        return this.options
    }
}

I got the polyglot trick from the blog Obscure Javascript.

If your intention is to be able to have another script started without --harmony be able to require this script, then this trick will not work.

链接地址: http://www.djcxy.com/p/87464.html

上一篇: 我如何知道我剩余的Soundcloud API限制?

下一篇: 我可以在节点js文件中指定es6吗?