Babelでプレイしようとしていますが、うまくいきません。
私のプロジェクトはシンプルです
_|-project/
|---src/
|-----index.html
|-----main.js
|-----module.js
|---Gruntfile.js
|---package.json
_
index.html
_<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Test</title>
<script src="main.js" type="application/javascript"></script>
</head>
<body>
<p>Simple html file.</p>
</body>
</html>
_
main.js
_import * as math from "./module";
async function anwser() {
return 42;
}
(function main() {
anwser().then((v) => {
console.info(v);
});
console.log(math.sum(5, 5));
})();
_
module.js
_export function sum(x, y) {
return x + y;
}
_
Gruntfile.js
_module.exports = function(grunt) {
grunt.initConfig({
"babel": {
"options": {
"sourceMap": true,
"experimental": true
},
dist: {
files: [{
"expand": true,
"cwd": "src/",
"src": ["**/*.js"],
"dest": "build/",
"ext": ".js"
}]
}
},
htmlmin: {
dist: {
options: {
removeComments: true,
collapseWhitespace: true
},
files: [{
"expand": true,
"cwd": "src/",
"src": ["**/*.html"],
"dest": "build/",
"ext": ".html"
}]
}
},
watch: {
scripts: {
files: 'src/*.js',
tasks: ["babel"]
},
html: {
files: 'src/*.html',
tasks: ["htmlmin"]
}
}
});
grunt.loadNpmTasks('grunt-babel');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-htmlmin');
grunt.registerTask("default", ["babel", "htmlmin"]);
};
_
私はうなり声を上げ、すべてがコンパイルされます。しかし、期待した結果が得られません。
最初に、ブラウザーは_require is not defined
_と言うので、require.jsをHTMLに追加します。
次に、Error: Module name "module" has not been loaded yet for context: _. Use require([]) http://requirejs.org/docs/errors.html#notloaded
を取得します
私はこれらのすべてについて少し混乱しています。コードを機能させるにはどうすればよいですか?
Veg_progの答えを拡張するには、コードをモジュールに整理する場合、Browserifyなどを使用する必要があります。 Browserifyは grunt-browserify を介してGruntで使用でき、Babelは babelify を介してBrowserifyで使用できます。
ファイルの一部を調整して、その方法を示しました。
index.html
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Test</title>
<script src="bundle.js" type="application/javascript"></script>
</head>
<body>
<p>Simple html file.</p>
</body>
</html>
main.js
import "babelify/polyfill"; // Needed for Babel's experimental features.
import * as math from "./module";
async function anwser() {
return 42;
}
(function main() {
anwser().then((v) => {
console.info(v);
});
console.log(math.sum(5, 5));
})();
Gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
browserify: {
dist: {
options: {
transform: [["babelify", { "stage": 0 }]]
},
files: {
"build/bundle.js": "src/main.js"
}
}
},
htmlmin: {
dist: {
options: {
removeComments: true,
collapseWhitespace: true
},
files: [{
"expand": true,
"cwd": "src/",
"src": ["**/*.html"],
"dest": "build/",
"ext": ".html"
}]
}
},
watch: {
scripts: {
files: "src/*.js",
tasks: ["browserify"]
},
html: {
files: "src/*.html",
tasks: ["htmlmin"]
}
}
});
grunt.loadNpmTasks("grunt-browserify");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-contrib-htmlmin");
grunt.registerTask("default", ["browserify", "htmlmin"]);
};
package.json
{
"devDependencies": {
"babelify": "6.0.1",
"grunt": "0.4.5",
"grunt-browserify": "3.6.0",
"grunt-contrib-htmlmin": "0.4.0",
"grunt-contrib-watch": "0.6.1"
}
}
Babelはデフォルトで「common」を使用します。 requirejsでは機能しません。したがって、モジュールを「AMD」に変更します。
"babel": {
"options": {
"sourceMap": true,
"experimental": true,
"modules": "AMD" //This is the line to be added.
},
dist: {
files: [{
"expand": true,
"cwd": "src/",
"src": ["**/*.js"],
"dest": "build/",
"ext": ".js"
}]
}
}
Babel6の更新。 http://babeljs.io/docs/plugins/transform-es2015-modules-AMD/ および https://babeljs.io/docs/plugins/ も参照してください
"babel": {
"options": {
"sourceMap": true,
"experimental": true,
"plugins": ["transform-es2015-modules-AMD"] //This is the line to be added.
},
dist: {
files: [{
"expand": true,
"cwd": "src/",
"src": ["**/*.js"],
"dest": "build/",
"ext": ".js"
}]
}
}
まず、ブラウザはrequireが定義されていないと言っているので、require.jsをHTMLに追加します。
Require.jsを追加することが解決策になるとは思いません。このコンテキストでは、requireはノードスタイルの構文です:( https://github.com/substack/browserify-handbook#user-content-require )。
Browserifyはモジュールローダーですが、requirejsとは異なる動作をします。 requirejs用のbabelディストリビューションもあります( https://github.com/mikach/requirejs-babel )が、browserifyの使用をお勧めします。
Babelがbrowserifyで作業しているセットアップでは、次のようなものです。
import $ from'jquery';
このようなものになります
var $ = require('jquery');