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]
- Host: GitHub
- URL: https://github.com/deno-sandbox/linux
- Owner: Deno-Sandbox
- Created: 2021-12-20T12:50:12.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-27T09:46:04.000Z (almost 4 years ago)
- Last Synced: 2025-03-17T22:07:43.782Z (over 1 year ago)
- Topics: deno, linux
- Language: TypeScript
- Homepage: https://deno.land/x/linux
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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());
```