ZumerBox is a small set of development tools designed to run common tasks in software development workflows. It offers functionalities for linting, formatting, building, testing, and releasing projects.
ZumerBox is intended for small projects with single or small development teams. It was initially created for personal use but can be useful for sharing with other developers who want to quickly test concepts or iterate on small projects.
The idea behind ZumerBox is that it can be used out-of-the-box without any configuration. Each tool is designed to work with sensible defaults, allowing you to get started quickly without having to spend time configuring settings.
You can use the ZumerBox bundle or any of its tools without installation by running npx. See Usage for details.
ZumerBox tools are designed as wrappers for popular tools such as Jest, ESLint, StyleLint, ESbuild, Prettier, and update-changelog. They are pre-configured to be immediately usable without the need for extensive setup or configuration.
You can install ZumerBox as a bundle or each tool individually according to your preference.
To install the entire ZumerBox bundle, simply run:
npm install zumerbox --save-devThis will install all tools included in ZumerBox.
Alternatively, you can install each tool independently. Here are the available tools:
- @zumerbox/doc-extractor: npm π¦ | GitHub

- @zumerbox/doc-extractor: npm π¦ | GitHub

- @zumerbox/bump: npm π¦ | GitHub

- @zumerbox/build: npm π¦ | GitHub

- @zumerbox/code-format: npm π¦ | GitHub

- @zumerbox/css-lint: npm π¦ | GitHub

- @zumerbox/scss-lint: npm π¦ | GitHub

- @zumerbox/js-lint: npm π¦ | GitHub

- @zumerbox/tests: npm π¦ | GitHub

- @zumerbox/npm-init: npm π¦ | GitHub

You can install any of these tools individually using npm:
npm install @zumerbox/tool-name --save-devReplace tool-name with the name of the tool you want to install.
You can use any tool from ZumerBox without the need for installation by running it directly with npx. This allows for a hassle-free setup and usage. For example, to run the tests, you can use in the project root folder:
# using ZumerBox bundle
npx zumerbox testsor
# using ZumerBox individual tool
npx @zumerbox/testsReplace tests with the name of the tool you want to use.
Alternatively, you can integrate ZumerBox tools into your npm package scripts. For instance, you can add a script entry in your package.json file:
{
"scripts": {
"bump": "npx zumerbox bump"
}
}or with an individual tool:
{
"scripts": {
"bump": "npx @zumerbox/bump"
}
}This way, you can utilize ZumerBox seamlessly within your project's development workflow.
- Zumerbox installed in your project
package.jsonfile
-
Installation: Install Zumerbox and its tools in your project.
npm install zumerbox --save-dev
-
Configuration: Add scripts to your
package.jsonfile to automate common development tasks using Zumerbox tools. You can enhance your workflow by incorporating scripts for versioning, testing, linting, updating changelog, and more.Example
package.jsonscripts including all tasks:{ "scripts": { "lint:css": "npx zumerbox css-lint --write", "lint:js": "npx zumerbox js-lint --fix", "format:code": "npx zumerbox code-format", "tests": "npx zumerbox tests", "prebump": "npm run lint:css && npm run lint:js && npm run format:code && npm run tests", "bump": "npx zumerbox bump && npx zumerbox changelog", "build": "npx zumerbox build", "git:push": "git commit -am\"chore: bump version\" && git push --follow-tags", "npm:publish": "npm publish", "workflow": "npm run bump && npm run build && npm run git:push && npm run npm:push" } }Example
package.jsonscripts including some tasks:{ "scripts": { "prebump": "npx zumerbox tests", "bump": "npx zumerbox bump && npx zumerbox changelog && git commit -am\"chore: bump version\"" } } -
Usage:
-
Workflow: In first example run this command to automatically lint, format, test, bump version, build dist files, push to git and publish on npm.
npm run workflow
-
Bump: In second example run this command to test, bump a version and update changelog.
-
If you want, the installation part can be ommited since zumerbox bundle or any of its tools are executables via
npx. -
The
prebumpscript is executed automatically beforebumpto ensure code quality by running linting tasks. This is done directly by npm scripts that support pre and post commands (Learn more on NPM). -
If there is an error in any tasks the flow will be interrupted. For instance, if tests don't pass, process exit.
By following this recipe, you can create a comprehensive development workflow that automates various tasks using Zumerbox and ensures code quality and consistency throughout the development process. Adapt this receipt to your needs.
- Zumerbox bundle or @zumerbox/npm-init
package.jsonfile (optional)
-
Create a folder project:
mkdir < folder project > cd < folder project >
-
Run npm-init tool:
npx @zumerbox/npm-init
Or
npx zumerbox npm-init
-
Usage: Just follow tool prompts.
npm-initwill ask to choose a package name and will check if this name is valid and available. It is allowed to to choose just a name or a scoped name (ej: @organization/name). By defaultnpm-initwill add an author name based on git config, and a MIT licence.
-
If you already have an initialized project with a
package.json,npm-nitwill update this file keeping your previous configuration. -
Since this tool is used occasionally, We not recommended to install it in your project as a dependency.
ZumerBox is licensed under the MIT License.
If you encounter any bugs or have suggestions for improvements, please feel free to open an issue on GitHub.