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

jogotech-package

v0.0.5

Published

<div align="center"> <div style="display: inline-block; text-align: right;"> <a href="https://jogotech.com/" target="_blank"> <img src="https://github.com/fernandogiroto/images/blob/main/logo_jogotech.png?raw=true" width="200px" /> </a>

Downloads

330

Readme

JogoTech is a versatile UI component library aimed at simplifying web application development. It provides reusable, customizable, and responsive components, allowing developers to create consistent and beautiful user interfaces effortlessly.

Table of Contents

Features

  • Reusable Components: Includes components that are commonly used across different projects.
  • Customizable Styling: Easily customizable to fit your application's design.
  • Responsive Layouts: Supports mobile, tablet, and desktop with ease.
  • Well-Documented API: Each component is well-documented with props and examples for quick integration.

Installation

Prerequisites

  • Node.js >= 14.x
  • npm >= 6.x or yarn >= 1.22.x

Install with npm

To install the JogoTech library, run the following command:

npm install jogotech

Install with yarn

yarn add jogotech

Basic Usage

Here’s a basic example of how to use one of the main components, the Button.

<template>
  <Button type="primary" @click="handleClick">Click Me</Button>
</template>

<script setup>
  function handleClick() {
    alert('Button clicked!');
  }
</script>

Components

Button

The Button component is a flexible, customizable button designed to fit a variety of use cases.

  • Props:
    • type (string): Defines the button style. Options are primary, secondary, etc.
    • @click (event): Event triggered when the button is clicked.

Example usage:

<Button type="primary" @click="handleSubmit">Submit</Button>

Grid System

The Grid component is a versatile and responsive grid system designed to simplify the creation of flexible layouts. It leverages CSS Grid under the hood and allows you to define the number of columns and gaps dynamically, adjusting seamlessly for mobile, tablet, and desktop screens.

  • Props:
    • columns (number): Specifies the number of grid columns.
    • gap (string): Defines the space between grid items (e.g., 10px, 1rem).
    • children (slot): Grid items to display within the grid.

Example usage:

<template>
  <Grid :columns="3" gap="20px">
    <div>Item 1</div>
    <div>Item 2</div>
    <div>Item 3</div>
  </Grid>
</template>