# net-tools-node

> This is the NodeJS API wrapper for the net-tools.xyz API (https://api.net-tools.xyz)

Latest version **1.0.6** (published 2020-04-27) · ISC license · 1 weekly downloads

## Install

```sh
npm install net-tools-node
pnpm add net-tools-node
yarn add net-tools-node
bun add net-tools-node
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.6 |
| Published | 2020-04-27 |
| First published | 2020-04-17 |
| Weekly downloads | 1 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 47.9 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 2 |
| Author | depascaldc |
| Maintainers | depascaldc |
| Keywords | net-tools, net-tools.xyz, apiwrapper, minecraftapi, iptools, cryptotools, tools, toolapi, api |

## Links

- npm: https://www.npmjs.com/package/net-tools-node
- Repository: https://github.com/depascaldc/net-tools-node
- Homepage: https://github.com/depascaldc/net-tools-node#readme
- Issues: https://github.com/depascaldc/net-tools-node/issues
- npm.io page: https://npm.io/package/net-tools-node

## Dependencies (1)

- [request](https://npm.io/package/request.md) ^2.88.2

## Alternatives

- [@gemini-wallet/core](https://npm.io/package/@gemini-wallet/core.md) — 515.6K weekly downloads
- [utility](https://npm.io/package/utility.md) — 416.6K weekly downloads
- [@primno/dpapi](https://npm.io/package/@primno/dpapi.md) — 7.2K weekly downloads
- [pi-readseek](https://npm.io/package/pi-readseek.md) — 3.7K weekly downloads
- [@emilia-protocol/verify](https://npm.io/package/@emilia-protocol/verify.md) — 1.1K weekly downloads

## Recent versions

- 1.0.6 (latest) — 2020-04-27
- 1.0.5 — 2020-04-27
- 1.0.4 — 2020-04-17
- 1.0.3 — 2020-04-17
- 1.0.2 — 2020-04-17
- 1.0.1 — 2020-04-17
- 1.0.0 — 2020-04-17

## README

## NET-TOOLS.XYZ API Wrapper

### `npm install --save net-tools-node`

For further informations visit our [API Docs](https://apidocs.net-tools.xyz) ( UNDER DEVELOPMENT )

Some USAGE examples will be found later in the package folder.

More tools will be added when theyre implemented in out API.

---

### Available Tools:
___

- Minecraft API Tools 
  - read serverQuery
  - ping server
  - get the servers favicon as imageURL (base64 encoded)

- IP Information gathering tools
  - MyIP Information
  - IP GeoLocation
  - Whois Lookup
  - WhoisV2 Lookup (get a better version of JSON data)

- Crypto Tools
  - Password Generator API

---


### Small Disclaimer
```
The provided Tools are just for the private USAGE. The Developers of net-tools.xyz do NOT assume any responsibility for improper handling of the tools.
```

#### LINKS:
- [API-Docs](https://apidocs.net-tools.xyz)
- [Website](https://net-tools.xyz)
- [DiscordBot](https://net-tools.xyz/discordbot)
- [DiscordServer](https://net-tools.xyz/discord)

---

## Some Examples

```js
const netTools = require('net-tools-node')

// sync get password
netTools.cryptoAPI.passwordGenerator.run(150, (error, data) => {
    if (error) console.log(error)
    console.log(data)
})
// async get password
netTools.cryptoAPI.passwordGenerator.runAsync(150).then(data => {
    console.log(data)
}).catch(error => {
    console.log(error)
})

// sync resolve uuid
netTools.minecraftAPI.uuidResolver.run("depascaldc", (error, data) => {
    if (error) console.log(error)
    console.log(data)
})
// async resolve uuid
netTools.minecraftAPI.uuidResolver.runAsync("depascaldc").then(data => {
    console.log(data)
}).catch(error => {
    console.log(error)
})

// sync whoisV2 resolve
netTools.ipToolsAPI.whoisV2.run("net-tools.xyz", (error, data) => {
    if (error) console.log(error)
    console.log(data)
})
// async whoisV2 resolve
netTools.ipToolsAPI.whoisV2.runAsync("net-tools.xyz").then(data => {
    console.log(data)
}).catch(error => {
    console.log(error)
})
```

---
_Source: https://npm.io/package/net-tools-node · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
