An open API service indexing awesome lists of open source software.

https://github.com/deno-sandbox/linux

Check some linux info and other things like password gen [Working On it]
https://github.com/deno-sandbox/linux

deno linux

Last synced: 2 months ago
JSON representation

Check some linux info and other things like password gen [Working On it]

Awesome Lists containing this project

README

          

# Linux 🐧

## Main script:
Just check if the running platform of deno is a linux os or not

```ts
import { Snow_Linux } from "./mod.ts";
let data = new Snow_Linux();
console.log(data.isThisALinux())
```

## password.ts
Allow you to create valid linux password (require onpenssl)
```ts
import { passwordGenerator } from "./password.ts";
let password = new passwordGenerator("password");
console.log(await password.getPassword());
```