Search documentation v0.5.0

Setup

How to install Webcore

Report Issue ↗️

Webcore can be used as a standalone project, or it can be integrated into your existing Astro, Svelte, or React ecosystems. The easiest way to get started is to run the following command in your terminal, and follow the prompts:

Terminal window
npm create webcore@latest

You can also clone the repository and run npm run dev to start building your pages with the components available.

Manual Install

Before getting started, make sure you have a package manager installed, such as Node.

Webcore components use Sass for styling and TypeScript for type safety. To use the component library, make sure you have the following packages installed:

You can use the following command in your terminal to installed the above packages if you don’t have them already:

npm i sass typescript
yarn add sass typescript

The library can be used with Astro, Svelte, and React. Depending on your project setup, you’ll also need the following packages:


Request improvement for this page