Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justjavac/deno_module_info
Get module info
https://github.com/justjavac/deno_module_info
deno deno-mod deno-module deno-modules deno-tools deno-utils info pkg
Last synced: 22 days ago
JSON representation
Get module info
- Host: GitHub
- URL: https://github.com/justjavac/deno_module_info
- Owner: justjavac
- License: mit
- Created: 2020-08-21T18:06:30.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-04T13:07:14.000Z (over 2 years ago)
- Last Synced: 2024-10-03T11:41:54.584Z (about 1 month ago)
- Topics: deno, deno-mod, deno-module, deno-modules, deno-tools, deno-utils, info, pkg
- Language: TypeScript
- Homepage: https://deno.land/x/module_info
- Size: 12.7 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deno_module_info
[![tag](https://img.shields.io/github/release/justjavac/deno_module_info)](https://github.com/justjavac/deno_module_info/releases)
[![Build Status](https://github.com/justjavac/deno_module_info/workflows/ci/badge.svg?branch=master)](https://github.com/justjavac/deno_module_info/actions)
[![license](https://img.shields.io/github/license/justjavac/deno_module_info)](https://github.com/justjavac/deno_module_info/blob/master/LICENSE)Get module info of Deno from .
## Usage
```js
import moduleInfo, { type ModuleInfo} from 'https://deno.land/x/module_info/mod.ts';await versionInfo('std');
```output:
```ts
{
name: "std",
description: "A secure JavaScript and TypeScript runtime",
star_count: 66566
}
```## Example
```bash
deno run --allow-net https://deno.land/x/module_info/examples/std.ts
```## License
[deno_module_info](https://github.com/justjavac/deno_module_info) is released
under the MIT License. See the bundled [LICENSE](./LICENSE) file for details.