@javascript-utilities/iterator-cascade-callbacks
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

Iterator Cascade Callbacks

JavaScript/TypeScript Iterables with Rust-like ergonomics: .filter, .map, and more!

Byte size of Iterator Cascade Callbacks Open Issues Open Pull Requests Latest commits Build Status



Requirements

NodeJS development dependencies may be installed via NPM...

npm install

Notice as of version 1.0.0 NodeJS dependencies are for development only, ie. if utilizing this project within other applications or as a Git submodule, then no third-party dependencies are required.


Quick Start

NodeJS projects may use npm to install iterator-cascade-callbacks as a dependency...

npm install @javascript-utilities/iterator-cascade-callbacks

... or as a development dependency via --save-dev command-line flag...

npm install --save-dev @javascript-utilities/iterator-cascade-callbacks

... Check Usage for quick tips on how to import this project within your own source code.

API documentation should be reasonably up-to-date with quick examples, and tips.


Usage

Note; the examples/ directory contains sample projects, which likely will be more instructive than this set of sub-sections.


import code and types as TypeScript module

import { Asynchronous, Synchronous } from '@javascript-utilities/iterator-cascade-callbacks';

import type {
  Asynchronous as Asynchronous_Types,
  Synchronous as Synchronous_Types,
  Shared as Shared_Types
} from '@javascript-utilities/iterator-cascade-callbacks';

require as NodeJS library

const { Asynchronous, Synchronous } = require('@javascript-utilities/iterator-cascade-callbacks');

Synchronous.Iterator_Cascade_Callbacks examples


Asynchronous.Iterator_Cascade_Callbacks examples


Notes

This repository may not be feature complete and/or fully functional, Pull Requests that add features or fix bugs are certainly welcomed.

At time of writing (late 2023-10-16) it seems TypeScript will not fully parse exports from the package.json file, so while this project does publish features as self contained files, TypeScript consumers will need to import or require from the related index file.

However, those that are authoring pure JavaScript projects may make use of target/feature specific transpiled files; asynchronous.mjs, asynchronous.js, synchronous.mjs, and/or synchronous.js instead. Which should reduce network/system overhead for applications that require only a sub-set of features offered by the Iterator Cascade Callbacks library.


Common issues and possible fixes

Could not find a declaration file for module

Error message example

src/index.ts:3:30 - error TS7016: Could not find a declaration file for module '@javascript-utilities/iterator-cascade-callbacks'. '...' implicitly has an 'any' type.

Try `npm i --save-dev @types/iterator-cascade-callbacks` if it exists or add a new declaration (.d.ts) file containing `declare module '@javascript-utilities/iterator-cascade-callbacks';`

3 import { Asynchronous } from '@javascript-utilities/iterator-cascade-callbacks';
                               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Possible fix define --moduleResolution as either node16 or nodenext

tsconfig.json (snip)

{
  "compilerOptions": {
    "moduleResolution": "NodeNext",
    "...": "..."
  }
}

Contributing

Options for contributing to Iterator Cascade Callbacks and JavaScript Utilities


Forking

Start making a Fork of this repository to an account that you have write permissions for.

  • Add remote for fork URL. The URL syntax is git@github.com:<NAME>/<REPO>.git...
cd ~/git/hub/javascript-utilities/iterator-cascade-callbacks

git remote add fork git@github.com:<NAME>/iterator-cascade-callbacks.git
  • Commit your changes and push to your fork, eg. to fix an issue...
cd ~/git/hub/javascript-utilities/iterator-cascade-callbacks


git commit -F- <<'EOF'
:bug: Fixes #42 Issue


**Edits**


- `<SCRIPT-NAME>` script, fixes some bug reported in issue
EOF


git push fork main

Note, the -u option may be used to set fork as the default remote, eg. git push -u fork main however, this will also default the fork remote for pulling from too! Meaning that pulling updates from origin must be done explicitly, eg. git pull origin main

  • Then on GitHub submit a Pull Request through the Web-UI, the URL syntax is https://github.com/<NAME>/<REPO>/pull/new/<BRANCH>

Note; to decrease the chances of your Pull Request needing modifications before being accepted, please check the dot-github repository for detailed contributing guidelines.


Sponsor

Thanks for even considering it!

Via Liberapay you may sponsor__shields_io__liberapay on a repeating basis.

Regardless of if you're able to financially support projects such as iterator-cascade-callbacks that javascript-utilities maintains, please consider sharing projects that are useful with others, because one of the goals of maintaining Open Source repositories is to provide value to the community.


Attribution


License

Iterator that chains callback function execution
Copyright (C) 2023 S0AndS0

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, version 3 of the License.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

For further details review full length version of AGPL-3.0 License.

Package Sidebar

Install

npm i @javascript-utilities/iterator-cascade-callbacks

Weekly Downloads

0

Version

1.0.1

License

AGPL-3.0

Unpacked Size

1.15 MB

Total Files

33

Last publish

Collaborators

  • s0ands0