Getting Started

You don’t have to use the Printer Template, but, Printer generally works best with the structure found in the template.

To get started, you should clone, fork, download, or create a new project from the new project Template. Here is how to create a repository from a template.

Here is a link to the Printer Template.

git clone https://github.com/PrinterFramework/new-project name-of-new-project

After you setup your new project. Run bun install and bun dev. The dev server will run on localhost:4200

cd name-of-new-project 
bun install
bun run dev

Navigate to localhost:4200, you can also navigate to localhost:4200/ui to review the template ui kit.

If you do not have bun, or, do not want to use bun, you can run the npm version of these commands.

cd name-of-new-project 
npm install
npm run dev