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 🙏

© 2025 – Pkg Stats / Ryan Hefner

sdk-vote

v0.0.6

Published

Клонируете репозиторий на свою локальную машину:

Downloads

12

Readme

Правила (начало работы)

Клонируете репозиторий на свою локальную машину:

  • git clone https://github.com/SergeiKostiaev/SDK.git

Создаете и переходите на ветку(переход автоматический):

  • git checkout -b Название_ветки

Начинаете разрабатывать!

Важно! Название ветки совпадает с наименованием фичи/задачей(на англ)

Закончили разработку

  • git add .
  • git commit -m "Тут подробное описание, что сделали на анг"
  • git push -u origin Название_ветки / git push

Не забудьте проверить, что пуш прошел успешно!

Так же на GitHub делаем PullRequest

Сами Merge не делаем!

Запуск и тестирование своей части локально

  • npm run dev

Вид заполнения SASS

@import "../App"

.modalOverlay
  position: fixed
  top: 0
  left: 0
  width: 100%
  height: 100%
  background-color: $overlay
  display: flex
  justify-content: flex-end
  z-index: 1000
  .modalContent
    background-color: $white
    width: 467px
    height: 100%
    padding: 20px
    box-shadow: -4px 0 10px $bxShadow
    position: relative
    display: flex
    flex-direction: column

Компонент UI

  • Сам компонент Example.tsx
  • Стили для компонента Example.module.tsx

Пример компонента

import styles from './Modal.module.sass';

const Modal = ({ onClose }) => {
    return (
        <div className={styles.modalOverlay}>
            <div className={styles.modalContent}>
                <span className={styles.closeIcon} onClick={onClose}>
                    ✖
                </span>
                <h2>Голосование за функции</h2>
                <div className={styles.functionList}>
                    <div className={styles.functionItem}>
                        <p>Функция 1</p>
                        <button>Голосовать</button>
                    </div>
                    <div className={styles.functionItem}>
                        <p>Функция 2</p>
                        <button>Голосовать</button>
                    </div>
                </div>
            </div>
        </div>
    );
};

export default Modal;

Используем следующий стек:

Backend

  1. Node.Js
  2. Rest API
  3. БД(MySql)

Frontend

  1. React (Vite)
  2. TS (для избежания ошибок)
  3. SASS(Стили)
  4. UI компоненты(если понадобятся)

Общее

  1. GIT
  2. GitHub
  3. Docker(при необходимости)
  • десктоп версия

  • P.S. (из инета что такое SDK)

Набор инструментов, библиотек, документации и примеров кода, которые предоставляются разработчикам для интеграции определенного функционала в их приложения. SDK упрощает и стандартизирует процесс добавления определенных функций в программные продукты.