
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
halleyx-ui-framework
Advanced tools
Introduction — Components — Getting Started — License
Hey there! We are excited to introduce our latest adventure - Halleyx UI Framework.
Halleyx is a UI component framework completely designed by and for developers using Vuejs. We made this framework from scratch, so it's suitable for all types of developers - whether you're a frontend lover or a backend developer.
We believe that a programmer can save some time if they find a library that works as desired and does not have to change its structure in accordance with the project.
Our main goal is to make programming less tedious by providing fully-built and customizable components that are simple to integrate. Big things comes in small packages. We have created 40+ flexible, modular components that accelerate development time and simplify the process of creating visually stunning projects, without compromising the developer's independence and personalization
So start designing with ease!
The following components are currently available for use
NPM
npm install halleyx-ui-framework
This section describes how to use Halleyx UI framework in your project.
Global import
Config module with project globally
//main.js
import { createApp } from "vue";
import App from "./App.vue";
import halleyxComponents from "halleyx-ui-framework";
//load the styles
import 'halleyx-ui-framework/dist/cs/index.css';
createApp(App).use(halleyxComponents).mount("#app");
Local import
Config module with project locally
//main.js
import { createApp } from "vue";
import App from "./App.vue";
import halleyxComponents from "halleyx-ui-framework";
//load the styles
import 'halleyx-ui-framework/dist/cs/index.css';
createApp(App).use(halleyxComponents).mount("#app");
<!-- Any vue component-->
<template>
<hlx-button class="primary">Button</hlx-button>
</template>
<script>
import {HlxButton} from 'halleyx-ui-framework';
export default {
name: 'App',
components: {
HlxButton,
},
}
</script>
Halleyx UI Framework Library comes with a 3-clause BSD license.
FAQs
The Halleyx UI Framework is a Vue 3 component framework.
The npm package halleyx-ui-framework receives a total of 296 weekly downloads. As such, halleyx-ui-framework popularity was classified as not popular.
We found that halleyx-ui-framework demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.