Socket
Book a DemoInstallSign in
Socket

@lite-v3/locky

Package Overview
Dependencies
Maintainers
7
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lite-v3/locky

Handy engine version validator

latest
npmnpm
Version
1.0.1
Version published
Maintainers
7
Created
Source

@lite-v3/locky

A handy engine version validator. Tiny and has no dependencies.

By TokopediaVersion

Install

pnpm install @lite-v3/locky --dev

Usage

CLI

@lite-v3/locky is suitable to apply at preinstall script. Safely runs your installation script by validating your engine version requirements.

// <root>/package.json
{
    ...
    "scripts" : {
       "preinstall": "npx @lite-v3/locky --quite"
    },
    ...
    "engines": {
        "node": ">=14.17 <15",
        "pnpm": ">=4"
    }
}

Behind the scene, locky will compare your installed node and pnpm version with the specified version in root package.json. If the requirement is not satisfied, rather than logging with warnings, locky will throw the error. The purpose is we make a pre-validation process to isolate the depenencies of your specific version.

The script also ensure you are correctly using pnpm rather than other package managers.

API

    const checkEngine = require('@lite-v3/locky');

    try {
        checkEngine();
        // requirement is satisfied
    } catch {
        // requirement is not satisfied
    }

Code By WPE Team @Tokopedia

FAQs

Package last updated on 28 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts