core
core copied to clipboard
Fastjs is a useful, lightweight JavaScript library for any types of project.
Fastjs / Powerful JavaScript Library
Getting Started
- https://fastjs.dev/
- https://docs.fastjs.dev/
Description
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.
Start Using
Bundler/CommonJS
npm install jsfast
import { dom } from "jsfast"; // esm
const { request } = require("jsfast"); // cjs
CDN (Global)
<script src="https://unpkg.com/jsfast/dist/fastjs.global.js"></script>
Browser (ES Module)
<script type="module">
import { dom } from "https://unpkg.com/jsfast/dist/fastjs.esm.browser.js";
</script>
Info
- Author: xiaodong2008
- License: MIT