Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nielse63/node-scripts
Collection of useful node scripts and utilities
https://github.com/nielse63/node-scripts
node utilities
Last synced: 28 days ago
JSON representation
Collection of useful node scripts and utilities
- Host: GitHub
- URL: https://github.com/nielse63/node-scripts
- Owner: nielse63
- License: mit
- Created: 2021-10-07T08:36:54.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-07T06:14:57.000Z (about 1 month ago)
- Last Synced: 2024-10-08T05:30:53.894Z (about 1 month ago)
- Topics: node, utilities
- Language: TypeScript
- Homepage: https://nielse63.github.io/node-scripts/
- Size: 28.6 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# node-scripts
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/nielse63/node-scripts/node.js.yml?style=for-the-badge) ![Depfu](https://img.shields.io/depfu/dependencies/github/nielse63/node-scripts?style=for-the-badge) ![Codecov](https://img.shields.io/codecov/c/github/nielse63/node-scripts?style=for-the-badge) ![GitHub issues by-label](https://img.shields.io/github/issues-raw/nielse63/node-scripts/bug?label=open%20issues&style=for-the-badge) ![GitHub](https://img.shields.io/github/license/nielse63/node-scripts?style=for-the-badge)
> Collection of useful node scripts and utilities
## Packages
| Package | Description |
| --- | --- |
| [@nielse63/eslint-config](https://github.com/nielse63/node-scripts/blob/main/packages/eslint-config) | Shared eslint-config |
| [@nielse63/exec](https://github.com/nielse63/node-scripts/blob/main/packages/exec) | Run child process asynchronously |
| [@nielse63/prettier-config](https://github.com/nielse63/node-scripts/blob/main/packages/prettier-config) | Shared prettier config |
| [@nielse63/generate-tests](https://github.com/nielse63/node-scripts/blob/main/packages/generate-tests) | Automatically generate jest specs for uncovered source files |
| [@nielse63/reset](https://github.com/nielse63/node-scripts/blob/main/packages/reset) | Quickly clean your project of unwanted files and folders |
| [@nielse63/trash](https://github.com/nielse63/node-scripts/blob/main/packages/trash) | Move files to trash (instead of rm -rf) |
| [@nielse63/tsconfig](https://github.com/nielse63/node-scripts/blob/main/packages/tsconfig) | Shared TypeScript config for basic projects |
| [@nielse63/tsconfig-eslint](https://github.com/nielse63/node-scripts/blob/main/packages/tsconfig-eslint) | Shareable TypeScript config to be used with ESLint |## Usage
Install the individual package or packages you want to use in your project. See the [packages](#packages) for individual usage and documentation.
## Contributing
### Setting Up
```bash
git clone https://github.com/nielse63/node-scripts.git
cd node-scripts
nvm use
npm ci# create a new branch
git checkout scratch/my-awesome-feature
```### Development
Make your desired changes and run the tests:
```bash
npm run build
npm run lint
npm test
```The commit and push the changes to your branch and open a new pull request.
### Releasing
```bash
npm run release
```## Roadmap
See GitHub issues: [https://github.com/nielse63/node-scripts/issues](https://github.com/nielse63/node-scripts/issues).