Skip to content

Latest commit

 

History

History
 
 

create-qwik

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Create Qwik ⚡️

Interactive mode

npm create qwik@latest

Command mode

npm create qwik@latest <starter> <projectName>

API

const { createApp } = require('create-qwik');

const opts = {
  projectName: 'my-project',
  starterId: 'todo',
  outDir: '/path/to/output/dir',
};

const result = await createApp(opts);
console.log(result);

Community

Related