https://github.com/peterdee/js-classes
Examplary module
https://github.com/peterdee/js-classes
Last synced: 10 months ago
JSON representation
Examplary module
- Host: GitHub
- URL: https://github.com/peterdee/js-classes
- Owner: peterdee
- Created: 2020-01-02T20:40:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-02T21:24:34.000Z (over 6 years ago)
- Last Synced: 2025-08-09T09:05:40.974Z (11 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/js-classes-examplary-module
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Examplary module
**This is an examplary module, that is published to NPM.**
**Please ignore this, as this module does not provide any real functionality.**
This module uses [OpenDota API](https://docs.opendota.com) to search for players by player names.
[](https://snyk.io/test/github/peterdee/js-classes?targetFile=package.json)
### Installation
```
npm i js-classes-examplary-module
```
### Usage
Create an instance of the module:
```
const Examplary = require('js-classes-examplary-module');
const Instance = new Examplary();
```
Then use it in some async function:
```
const players = await Instance.searchPlayers('some player name');
console.log(players);
```