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

https://github.com/retraigo/importall

Small Deno module to import all files in a directory.
https://github.com/retraigo/importall

Last synced: 3 months ago
JSON representation

Small Deno module to import all files in a directory.

Awesome Lists containing this project

README

        

# importall
Small Deno module to import all files in a directory.

```ts
import { importAll } from "https://deno.land/x/[email protected]/mod.ts";

console.log(await importAll(`${import.meta.dirname}/testfiles`));
```