我想静态地服务一个项目,它使用 webcomponents(使用 lit-html),没有任何打包工具,如 webpack 等。
示例项目由以下结构组成:
index.html
app.js
package.json
package.json
:
{
"name": "lit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.2.7",
"lit-element": "^2.0.1"
}
}
app.js
:
import { LitElement, html } from 'lit-element';
class FooElement extends LitElement {
render() {
return html`<div>hello world!</div>`;
}
}
window.customElements.define('x-foo', FooElement);
最后,index.html
:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title></title>
<script src="app.js" type="module"></script>
</head>
<body>
<x-foo></x-foo>
</body>
</html>
我使用静态 http 服务器来提供服务,当然,这不起作用。浏览器引发错误:Error resolving module specifier: lit-element
.
因此,我们尝试将import
指令更改为:
import { LitElement, html } from './node_modules/lit-element/lit-element.js';
然后浏览器失败:Error resolving module specifier: lit-html
在lit-element.ts:14:29
我尝试使用经过以下修改的systemjs
版本3.0.1
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title></title>
</head>
<body>
<script type="systemjs-importmap" src="systemjs.map.json"></script>
<script src="./node_modules/systemjs/dist/system.min.js"></script>
<script>
System.import('app');
</script>
<x-foo></x-foo>
</body>
</html>
和一个systemjs.map.json
文件:
{
"imports": {
"app": "./app.js",
"lit-element": "./node_modules/lit-element/lit-element.js",
"lit-html": "./node_modules/lit-html/lit-html.js"
}
}
当加载这个(再次通过静态网络服务器)时,我们进入 Firefox:
import declarations may only appear at top level of a module
在app.js:1
.
在 Chrome 中:
Uncaught SyntaxError: Unexpected token {
在app.js:1
在 Safari 中:
Unexpected token '{'. import call expects exactly one argument.
在app.js:1
所有这些都表明它systemjs
没有被app.js
视为一个模块。
无论如何,我们可以实现对具有依赖关系树的模块的静态加载node_modules
吗?
我已将代码版本推systemjs
送到https://github.com/dazraf/lit-test。
谢谢。