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

cipherts

v0.1.1

Published

[![npm version](https://img.shields.io/npm/v/cipherts)](https://www.npmjs.com/package/cipherts) ![Codecov](https://img.shields.io/codecov/c/github/ruairidhflint/cipherts) ![GitHub last commit](https://img.shields.io/github/last-commit/ruairidhflint/cipher

Downloads

6

Readme

cipherTS

npm version Codecov GitHub last commit

Full documentation in an easier to read format can be found here.

A selection of classic ciphers implemented in TypeScript with no additional dependencies.

Installation

You can install CipherTS using npm or yarn.

Using npm

npm install cipherts

Using yarn

yarn add cipherts

Requirements

  • Node.js version 16.0.0 or higher
  • TypeScript version 5.0.0 or higher (if using TypeScript)

Package Structure

CipherTS supports both CommonJS and ES Modules:

  • CommonJS: require('cipherts')
  • ES Modules: import cipherts from 'cipherts'

Verifying the Installation

After installation, you can verify that CipherTS is correctly installed by running:

npm list cipherts

or

yarn why cipherts

This should display the installed version of CipherTS.

Development

If you're contributing to CipherTS or running it locally, you can use the following npm scripts:

  • npm start: Start the project using ts-node
  • npm run build: Build the project using tsup
  • npm run lint: Run ESLint
  • npm run format: Format the code using Prettier
  • npm test: Run tests using Jest

Contributing

Contributions to CipherTS are welcome! Here's how you can contribute:

  • Clone the repository: git clone https://github.com/ruairidhflint/cipherTS.git
  • Create a new branch for your feature or bug fix: git checkout -b feature/your-feature-name
  • Make your changes and commit them with a clear commit message
  • Push your branch to the repository: git push origin feature/your-feature-name
  • Create a pull request from your branch to the main branch

Before submitting your pull request, please:

  • Ensure your code follows the project's coding standards
  • Run npm run lint and npm run format to check and fix code style
  • Add tests for new features or bug fixes
  • Run npm test to make sure all tests pass
  • Update documentation as necessary