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 🙏

© 2026 – Pkg Stats / Ryan Hefner

jskeleton-boilerplate

v1.1.17

Published

```bash npm install jskeleton-boilerplate ``` ### Установка базового шаблона ```bash boilerplate --action=template ``` Если хотите равзернуть проект в другой папке, можно указать параметр **dist** ```bash boilerplate --action=template

Downloads

42

Readme

jskeleton-boilerplate

Установка пакета

    npm install jskeleton-boilerplate

Установка базового шаблона

    boilerplate --action=template

Если хотите равзернуть проект в другой папке, можно указать параметр dist

    boilerplate --action=template --dist='путь_к_папке'

Также система поддерживает формат верстки электронного письма с помощью параметра mode со значением email. В таком режиме все стили будут прописаны прямо в html верстке

    boilerplate --action=template --mode=email

Запуск проекта

    boilerplate --action=start

Создания минифицированных файлов

    boilerplate --action=compress

Установка js плагина

    boilerplate --action=plugin-add --name='имя_плагина'

Удаление js плагина

    boilerplate --action=plugin-remove --name='имя_плагина'

Создание элементов SMACS разметки

    boilerplate --action=gen-'тип' --name='имя'

Типы бывают нескольких видов

  • base Создает файл в папке base в корневой директории sass файлов
  • element Создает файл в папке element в корневой директории sass файлов
  • utils Создает файл в папке utils в корневой директории sass файлов
  • block Создает файл в папке block в корневой директории sass файлов
  • section Создает файл в папке section в корневой директории sass файлов

Например:

    boilerplate --action=gen-section --name=header

Конфигурация

Файл config.js располагается в корне Вашего проекта. Состав:

const config = {
    dirs: {
        public: "./public", //Путь до папки, куда будут собираться скомпилированные файлы и откуда запуститься браузер
        source: "./src", // Папка с исходниками
        assets: "./public/assets" //Папка для инсталяции пользовательских плагинов
    },
    scss: {
        input: {
            dir:  "./src/scss", // Папка с исходниками SASS файлов
            file: "./src/scss/index.scss" // Индексный файл для компиляции sass
        },
        output: {
            dir:  "./public/css", // Папка для публикации CSS
            file: "./public/css/style", //Скомпилированный CSS
            min:  "./public/css/style.min" //Минифицированный CSS
        }
    },
    html: {
        input: {
            dir:  "./src/html" // Папка с исходниками HTML
        },
        output: {
            dir: "./public" // Папка публикации скомпилированного HTML
        }
    },
    js: {
        input: {
            dir:  "./src/js", // Папка с исходниками JS файлов
            file: "./src/js/index.js" // Индексный файл для компиляции JS
        },
        output: {
            dir:  "./public/js", // Папка публикации скомпилированного JS
            file: "./public/js/index", //Скомпилированный JS
            min:  "./public/js/index.min" //Минифицированный JS
        }
    }
}
module.exports = config; //Обязательно экспортируйте конфиг