npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

koma-ui

v0.1.3

Published

[![Build Status](https://travis-ci.org/FLYSASA/KOMA-UI.svg?branch=master)](https://travis-ci.org/github/FLYSASA/KOMA-UI) [![license](https://img.shields.io/github/license/FLYSASA/KOMA-UI?color=blue)](https://github.com/FLYSASA/KOMA-UI/blob/master/LICENS

Downloads

6

Readme

KOMA - 一个基于vue框架的UI组件库

author: FLYSASA

Build Status license NPM Vue

介绍

这是一个基于vue的UI框架。

目前做的比较成熟稳定的UI库有elementUI,ant-design等,为什么我还要自己再去花那么多时间和精力去造轮子? 我觉得会用轮子和造轮子完全是两码事,碰到业务上的需求,现在的UI库无法满足你时,你可以随时对你的轮子进行拓展,持续封装业务中高复用的代码,深化自己造轮子的能力,绝对会让自己开发效率事半功倍。

项目特点

1. 使用Karma作为测试运行器,Mocha、Sinon编写测试用例,Travis-ci自动持续化测试,保证库的代码质量。

2. 使用单向数据流、发布订阅模式、懒加载等技术概念。

3. 组件的样式、色彩的搭配参考了一些成熟的UI框架(如Element UI、ant-design)

开始使用

  1. 添加 css 样式 使用本框架前请在 css 中开启 boder-box

    * ,*::before, *::after {boder-box: box-sizing;}
  2. 安装 koma-ui

 npm i koma-ui -S
  1. 引入 koma
 import { Button } from 'koma-ui'
 import 'koma-ui/dist/index.css'

 export default {
    name: 'app',
    components: {
        'k-button': Button
    }
 }

文档

运行测试用例: npm run test:unit

运行文档: npm run docs:dev

部署文档: npm run d