Skip to content
This repository was archived by the owner on Jul 3, 2025. It is now read-only.

Get Started

Jake edited this page Dec 9, 2020 · 3 revisions

Setup

To install and set up quyz, run:

npm init quyz

This will install quyz as a devDependency and set the test script to run quyz, for example (ignore version number):

{
    "name": "my-package",
    "scripts": {
        "test": "quyz"
    },
    "devDependencies": {
        "quyz": "^1.0.0"
    }
}

Alternatively, you can manually install quyz:

npm install --save-dev quyz

Be sure to set your test script to quyz, per the package.json above.

Clone this wiki locally