Ecosyste.ms: Awesome
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: 8 days 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-27T07:56:33.000Z (10 months ago)
- Last Synced: 2024-10-11T20:57:11.404Z (about 1 month 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`));
```