An open API service indexing awesome lists of open source software.

https://github.com/kscript/require

在浏览器中使用 commonjs 模块
https://github.com/kscript/require

commonjs require

Last synced: 7 months ago
JSON representation

在浏览器中使用 commonjs 模块

Awesome Lists containing this project

README

          

# @kscript/require
在浏览器中使用 commonjs 模块

## 示例
``` html



// 注意: 这里的require方法, 是异步的
const hello = await require('./hello.js')
console.log(hello)

```