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

yametrika

v2.2.1

Published

Серверное отслеживание посетителей с помощью Яндекс.Метрики

Downloads

146

Readme

Серверное отслеживание посетителей с помощью Яндекс.Метрики для Node.js

NPM version NPM Downloads Dependency Status

В некоторых случаях требуется отслеживать действия на стороне сервера.

Например:

  • Слежка за поисковыми роботами
  • Редиректы
  • Загрузка файлов
  • Страницы с ошибками (403, 404, 500)
  • RSS
  • Время выполнения скриптов
  • Время запросов к базам данных
  • Треккинг AJAX-запросов
  • и пр.

Возможности

  • Загрузка страницы - hit()
  • Внешняя ссылка - extLink()
  • Загрузка файла - file()
  • Параметры визита - params()
  • Неотказ - notBounce()

Настройки счётчика Метрики

В настройках счётчика во вкладке «Фильтры» / «Фильтрация роботов» необходимо выбрать опцию «Учитывать посещения всех роботов». В противном случае, статистика собираться не будет.

Ограничения

Отчёты, которые будут недоступны в Метрике при серверной отправки:

  • Половозрастная структура
  • Пол и возраст
  • Разрешения дисплеев
  • Версия Flash
  • Вебвизор, аналитика форм
  • Карта кликов

Уникальные посетители считаются по user agent'у и IP-адресу.

Установка

npm install yametrika

Использование

var http = require('http');

// Создаем счётчик, 12345 — номер счётчика
var counter = require('yametrika').counter({id: 12345});

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('okay');

    // Заполняем счётчик данными (referer, ip и ua) из запроса к серверу.
    counter.req(req);

    // Страница https://example.com, с заголовком 'Main page'
    // переход был с реферером https://othersite.com
    counter.hit('https://example.com', 'Main page', 'https://othersite.com');
}).listen(8080);

Отправка хита

/**
 * @param {string} pageUrl - Адрес страницы.
 * @param {string} [pageTitle] - Заголовок страницы.
 * @param {string} [pageRef] - Реферер страницы.
 * @param {Object} [userParams] - Параметры визитов.
 * @param {string} [ut] - Для запрета индексирования 'noindex'
 *
 * @returns {Object} this
 */
counter.hit('https://mysite.org', 'Main page', 'https://google.com/...');

// С запретом на индексирование и параметрами визитов
counter.hit('https://mysite.org', 'Main page', 'https://google.com/...', {level1: {level2: 1}}, 'noindex');

Достижение цели

/**
 * @param {string} target - Название цели.
 * @param {Object} [userParams] - Параметры визитов.
 *
 * @returns {Object} this
 */
counter.hit();
counter.reachGoal('goalName');

// или

// С параметрами визитов
counter.hit();
counter.reachGoal('goalName', {level1: {level2: 1}});

Вызов метода hit() перед reachGoal() необходим для корректной привязки цели к визиту.

Внешняя ссылка

/**
 * @param {string} url - Адрес страницы.
 * @param {string} [title] - Заголовок страницы.
 *
 * @returns {Object} this
 */
counter.extLink('https://nodejs.org');

Загрузка файла

/**
 * @param {string} file - Ссылка на файл.
 * @param {string} [title] - Заголовок страницы.
 *
 * @returns {Object} this
 */
counter.file('https://mysite.org/secret.zip');

Параметры визитов

/**
 * @param {...*} data - Параметры визитов.
 *
 * @returns {Object} this
 */
counter.params({level1: {level2: {level3: 1}}});

// или
counter.params('level1', 'level2', 'level3', 1);

Не отказ

/**
 * @returns {Object} this
 */
counter.notBounce();

Полезные ссылки

Лицензия

MIT License