Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amaui-org/amaui-node
Nodejs utils
https://github.com/amaui-org/amaui-node
amaui back-end backend javascript js node nodejs typescript utils web
Last synced: about 2 months ago
JSON representation
Nodejs utils
- Host: GitHub
- URL: https://github.com/amaui-org/amaui-node
- Owner: amaui-org
- License: mit
- Created: 2022-02-03T16:05:37.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-29T22:27:40.000Z (9 months ago)
- Last Synced: 2024-10-02T15:07:16.547Z (3 months ago)
- Topics: amaui, back-end, backend, javascript, js, node, nodejs, typescript, utils, web
- Language: JavaScript
- Homepage: https://docs.amaui.me/library/node
- Size: 43.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
amaui Node
Node
MIT license
Production ready
100% test cov
Nodejs
Very simple code
Modern code
Junior friendly
Typescript
Made with :yellow_heart:
## Getting started
### Add
```sh
yarn add @amaui/node
```### Use
```javascript
import path from 'path';import AmauiNode from '@amaui/node';
// A file add
await AmauiNode.file.add(path.resolve('a.json'), 'a');// A file read
await AmauiNode.file.get(path.resolve('a.json'));// A file remove
await AmauiNode.file.remove(path.resolve('a.json'));
```### Dev
Install
```sh
yarn
```Test
```sh
yarn test
```### Prod
Build
```sh
yarn build
```