JSPM

@aminnairi/linked-list

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q28715F
  • 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);

console.log(Array.from(myLinkedList));

Todo

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