我正在尝试从要在浏览器中使用的模块导入一个类。为此,我创建了一个 MCVE 来检查我的理解,尽管我得到了一个
Uncaught SyntaxError: The requested module './test-class-bundle.js' does not provide an export named 'TestClass'
错误。
我的 MCVE 包含以下内容:
(1)test-class.js
定义和导出类的A TestClass
。
(2) 我使用npm
and gulp
tobrowsify
和babalify
the test-class.js
。
(3)example1.html
是我用来测试的。
测试类.js
export class TestClass {
constructor(greeting){
this.greeting = greeting;
}
greet(){
console.log(this.greeting);
}
}
包.json
{
"name": "test-class",
"version": "1.0.0",
"description": "",
"main": "src/js/test-class.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "gulp",
"copyTests": "gulp copyTests",
"startServer": "gulp startServer",
"check": "gulp check"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "8.0.0",
"browserify": "^16.2.3",
"gulp": "^4.0.2",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"del": "^4.1.1",
"gulp-rename": "^1.4.0",
"gulp-connect": "^5.7.0",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.35.0"
}
}
gulpfile.js
//Include required modules
var gulp = require("gulp"),
babelify = require('babelify'),
browserify = require("browserify"),
source = require("vinyl-source-stream"),
connect = require('gulp-connect');
// Convert ES6 code in all js files in src/js folder and copy to
// build folder as bundle.js
gulp.task("build", function(){
return browserify({
entries: ["./src/js/test-class.js"]
})
.transform(babelify.configure({
presets : ["es2015"]
}))
.bundle()
.pipe(source("test-class-bundle.js"))
.pipe(gulp.dest("./build"));
});
//Copy static files from html folder to build folder
gulp.task("copyTests", function(){
return gulp.src("./test/html/*.*")
.pipe(gulp.dest("./build"));
});
//Start a test server with doc root at build folder and
//listening to 9001 port. Home page = http://localhost:9001
gulp.task("startServer", function(){
connect.server({
root : "./build",
livereload : true,
port : 9001
});
});
//Default task. This will be run when no task is passed in arguments to gulp
gulp.task("default", gulp.series("build", "copyTests"));
gulp.task("check", gulp.series("build", "copyTests", "startServer"));
示例1.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
</head>
<body>
<div><h2>Test</h2></div>
<script type="module">
import {TestClass} from "./test-class-bundle.js";
let testClass = new TestClass("Please work, pretty please!");
testClass.greet();
</script>
</body>
</html>
目录结构
/build
/src
/js
test-class.js
/test
/html
example1.html
我通过运行来测试它npm run check
,这会在 上启动一个服务器localhost:9001
,当从我的浏览器访问它时,会导致给定的错误出现在控制台日志中。
我已经有 10 多年没有使用 Javascript 了,其中很多内容对我来说都是新的。如果有人能启发我,我将不胜感激。谢谢!