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.
- Host: GitHub
- URL: https://github.com/retraigo/importall
- Owner: retraigo
- License: mit
- Created: 2022-06-25T15:15:23.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-27T07:56:33.000Z (over 1 year ago)
- Last Synced: 2025-02-15T19:19:50.529Z (5 months ago)
- Language: TypeScript
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`));
```