New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

code-skeleton

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

code-skeleton

a framework for creating versioned project templates

latest
npmnpm
Version
2.0.2
Version published
Maintainers
1
Created
Source

code-skeleton

A tool for creating templates that can be versioned and updated alongside your code.

Usage

In order to use this tool, you must first create a skeleton module:

import { copy, pkg, json, type Skeleton } from "code-skeleton";

export default async function (root: string, variables: object) {
    const skeleton: Skeleton = {
        "targetFile": copy(join(__dirname, "content", "sourceFile")),
        "tsconfig.json": json({
            set: {
                "extends": "@tsconfig/node18",
            },
        }),
        "package.json": pkg({
            scripts: {
                test: "tap",
            },
        }),
    };

    return skeleton;
}

Make sure to add code-skeleton as a peer dependency of your skeleton:

> npm install --save-peer code-skeleton

When applied the above skeleton would copy sourceFile to targetFile, ensure that the "extends" key of tsconfig.json is equal to the value "@tsconfig/node18", and ensure that the test script in package.json is set to "tap".

The skeleton must be published to npm. To consume the skeleton:

# --save-exact facilitates keeping your template current via dependabot and is highly recommended
> npm i -D --save-exact your-skeleton-module
> npm pkg set skeleton.module=your-skeleton-module
> npx code-skeleton apply

Generators

copy

json

pkg

Passing configuration to skeletons

FAQs

Package last updated on 01 Dec 2023

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