Skip to main content
VelinStyle v1.0.0
⌂ Home
  1. Docs
  2. Getting Started
  3. Download

Download

Get VelinStyle via CDN for the fastest setup, install it with npm for build-tool integration, or download the compiled files directly.

Self-hosted (recommended)

Copy dist/ from the framework repository or this docs site. Optional third-party CDNs may reference older npm builds — pin what you ship.

<!-- VelinStyle CSS -->
<link rel="stylesheet"
      href="/dist/velinstyle.min.css">

<!-- VelinStyle Web Components (optional, IIFE) -->
<script
        src="/dist/velinstyle-components.iife.js"></script>

You can also use jsDelivr as an alternative CDN:

<link rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/@birdapi/velinstyle@0.9.0/dist/velinstyle.min.css">

npm

Install VelinStyle as a dependency in your Node.js project to integrate it with your build pipeline (Vite, Webpack, Rollup, etc.):

# npm
npm install @birdapi/velinstyle

# yarn
yarn add @birdapi/velinstyle

# pnpm
pnpm add @birdapi/velinstyle

Then import the CSS in your entry file:

// Import all of VelinStyle CSS
import '@birdapi/velinstyle/dist/velinstyle.min.css';

// Optional: import Web Components
import '@birdapi/velinstyle/dist/velinstyle-components.min.js';

Compiled CSS & JS

Download the ready-to-use compiled files. The archive contains minified and unminified versions, theme presets, and the Web Components bundle.

Download VelinStyle v1.0.0

Contains CSS, JS components, theme presets, and plain CSS source modules.

Source Files

If you want to compile VelinStyle yourself or customize the CSS source, clone the repository and build from source:

git clone https://github.com/SkyliteDesign/velinstyle.git
cd velinstyle
npm install
npm run build