JSPM

@aminnairi/linked-list

0.3.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q37094F
  • License MIT

Linked List without any side-effects

Package Exports

  • @aminnairi/linked-list

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@aminnairi/linked-list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@aminnairi/linked-list

Requirements

  • Node

Installation

$ npm install @aminnairi/linked-list

Usage

"use strict";

const {linkedList} = require("@aminnairi/linked-list");

const myLinkedList = linkedList(2).addFirst(1).addFirst(0).removeFirst();

console.log(Array.from(myLinkedList));
// [1, 2]

Todo

  • Create a package setting
  • Add a license
  • Add documentation
  • Add a changelog
  • Publish the repository on GitHub
  • Add a git tag
  • Add unit tests
  • Add a pull request template
  • Add a bug report template
  • Add a feature request template
  • Add a contribution guideline
  • Publish the library on NPM
  • Optimize the library size
  • Add a test workflow
  • Add examples
  • Add a publish workflow