@estack/resolve
v0.2.0
Published
dev-server to create applications, sites or prototypes using only JS, HTML and CSS, No transpilation.
Downloads
7
Readme
@estack/cli
dev-server to create applications, sites or prototypes using only JS, HTML and CSS, No transpilation.
Example:
<script src="./my-app.js"></script>
The files to export are associated using the relative path wildcard whether it is ./
, ../
or /
, the use of extensions is mandatory for the build
import { c } from "atomico";
import html from "atomico/html";
function component() {
return html`<host>web app</host>`;
}
The files are manipulated on demand of the HTML, the transformations are limited to only solve the imports.
Dev mode
npx devstack dev src
Build mode
# step 1
npm install @estack/build
# step 2
npx devstack build src/*.html public
The export is selective using expressions or the file directly.