Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

javascript.mkNpmProject

import { javascript } from "https://garn.io/ts/v0.0.20/mod.ts"; 

const { mkNpmProject } = javascript;

Creates a npm-based garn Project.

function mkNpmProject(args: {
description: string;
src: string;
nodeVersion: NodeVersion;
}
): Project & {
node_modules: Package;
}
;
§
mkNpmProject(args: {
description: string;
src: string;
nodeVersion: NodeVersion;
}
): Project & {
node_modules: Package;
}
[src]

§Parameters

§
args: {
description: string;
src: string;
nodeVersion: NodeVersion;
}
[src]

§Return Type

§
Project & {
node_modules: Package;
}
[src]