Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hcodes authored Mar 16, 2018
1 parent d6635f4 commit 6b6f100
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ http.createServer(function (req, res) {
// Заполняем счётчик данными (referer, ip и ua) из запроса к серверу.
counter.req(req);

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

Expand All @@ -72,10 +72,10 @@ http.createServer(function (req, res) {
*
* @returns {Object} this
*/
counter.hit('http://mysite.org', 'Main page', 'http://google.com/...');
counter.hit('https://mysite.org', 'Main page', 'https://google.com/...');

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

## Достижение цели
Expand Down Expand Up @@ -105,7 +105,7 @@ counter.reachGoal('goalName', {level1: {level2: 1}});
*
* @returns {Object} this
*/
counter.extLink('http://nodejs.org');
counter.extLink('https://nodejs.org');
```

## Загрузка файла
Expand All @@ -116,7 +116,7 @@ counter.extLink('http://nodejs.org');
*
* @returns {Object} this
*/
counter.file('http://mysite.org/secret.zip');
counter.file('https://mysite.org/secret.zip');
```

## Параметры визитов
Expand Down

0 comments on commit 6b6f100

Please sign in to comment.