Fastjs is a useful, lightweight JavaScript library for any types of project.
It is designed to be easy to use. Fastjs can be with any framework or just pure JavaScript.
npm install jsfastimport { dom } from "jsfast"; // esm
const { request } = require("jsfast"); // cjs<script src="https://unpkg.com/jsfast/dist/fastjs.global.js"></script>
<script>
fastjs.dom().text("Hello World!");
</script><script type="module">
import { dom } from "https://unpkg.com/jsfast/dist/fastjs.esm.browser.js";
</script>- Author: xiaodong2008
- License: MIT