new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Deno · Reference · all subjects

cli commands/create

11 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

deno create example with JSR package

deno create jsr:@fresh/init creates a project from a JSR package.

deno create example with npm package

deno create npm:vite my-app creates a project from an npm package.

deno create example with --npm flag

deno create --npm create-vite my-app uses the --npm flag to treat unprefixed names as npm packages.

deno create example passing arguments to template

deno create jsr:@fresh/init -- --force passes arguments to the template package using -- separator.

deno create command syntax

The deno create command scaffolds a new project from a template package. The syntax is: deno create [OPTIONS] [PACKAGE] [-- [ARGS]...]. The PACKAGE argument requires either a jsr: or npm: prefix, or one of the --jsr / --npm flags. Unprefixed package names error out with 'Missing 'jsr:' or 'npm:' prefix.'

npm packages create naming convention

npm packages use the create- naming convention. Running deno create npm:vite resolves to the create-vite package on npm and executes its main entry point.

JSR packages create export

JSR packages use the ./create export. Any JSR package can act as a template by defining a ./create entry point in its deno.json file.

deno create --npm flag

The --npm flag treats unprefixed package names as npm packages.

deno create --jsr flag

The --jsr flag treats unprefixed package names as JSR packages.

deno create -y --yes flag

The -y or --yes flag bypasses the prompt and runs with full permissions.

deno create command

deno create is used to scaffold a new project from a template.

Give your agent this brain