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

seq-exec

v0.0.1

Published

Скрипт для организации последовательного исполнения JS-функций посредством механизма обратного вызова.

Downloads

2

Readme

Класс SeqExec и его методы

Файл seq-exec.js содержит класс SeqExec предназначенный для организации последовательного исполнения JS-функций посредством механизма обратного вызова.

Методы класса SeqExec:

| Название метода | Описание | | ----------------------- | -------------------------------------------------------------------------------- | | chain | Позволяет объединить функции в цепочку из последовательно выполняющихся функций. | | loop | Позволяет последовательно выполнить серию повторяющихся операций. |

Примеры

Простой пример: цепочка последовательно выполняющихся функций

В нижеприведённом примере ключевую роль играет вызов функции next(), только после которого происходит переход к исполнению следующей функции:

SeqExec.chain(function (next) {
    console.log("1");
    next(); // перейти к исполнению следующей функции в цепочке
}).then(function (next) {
    console.log("2");
    next(); // перейти к исполнению следующей функции в цепочке
}).then(function (next) {
    console.log("3");
});

Вывод:

$ node example1.js
Example 1:
1
2
3

Простой пример: циклы

В качестве простого примера, демонстрирующего суть метода SeqExec.loop(loopBodyCallback, stopConditionCallback) можно привести альтернативную реализацию циклов для JavaScript, без использования конструкций for и while:

var idx = 1;
SeqExec.loop(function loopBody(cont) {
    console.log(idx);
    idx += 1;
    cont(); // continue
}, function stopCondition() {
    return idx > 10 ? true : false;
});

Вывод:

$ node example2.js
Example 2:
1
2
3
4
5
6
7
8
9
10

Дополнительные пояснения к коду

ООП в JavaScript:

Синхронность и асинхронность в JavaScript:

Промисы:

npm:

Node.js:

JSLint: