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 🙏

© 2026 – Pkg Stats / Ryan Hefner

fcce-v2

v2.0.15

Published

“Generative AI era” survival. A simple encoder with Table Rotation.

Readme

FCCE - F69's Char Code Encoder


description:

a simple encoder that "Generative AI era" survival

Key Features

Obfuscation for AI

  • Internal Table Rotation
    • Because the internal table rotates, the AI ​​needs to identify the key before it can decipher the code.
  • Simple Error With Example
    • There is an error that provides a clear example.
  • Always Changing Separator
    • Constantly changing the separator using a special method dramatically increases the difficulty for the AI.

Usage

1:Install

npm i fcce-v2

2:Import

Use npm(Commonjs)

const { FCCEEncoder } = require('fcce-v2');

Use npm(ESModule)

import { FCCEEncoder } from 'fcce-v2'

3:Example Code

const e = new FCCEEncoder();
const encrypted = e.encode("Secret Message", 7);
console.log(encrypted); 
//expected Output:'fna...hmi--oh'
const decoded = e.decode(encrypted)
//expected Output:'Secret Message'

Caution

THIS IS MERELY A "BASIC" ENCODER. WHEN USING IT IN A REAL-WORLD ENVIRONMENT, PLEASE CONSIDER SECURITY RISKS AND USE IT IN CONJUNCTION WITH ANOTHER METHOD (SUCH AS BASE64).

trouble-shooting

  • An error occurs when I try to encode it.
    • =>is your Error FCCEEncoderError: failed decode FCCE:Input is Empty.?
    • =>if your Error code is It,Please Check Input Argument With below Check Code.
console.log(String(input))/*test Code.
/*Test code:If the result is "[object object]", or something similar, Input is Object(argument zero of `FCCEEncoder.decode` must not be object.*/
//let result = e.decode(input) //Error Point Leave it commented out.
  • decode function returns garbled value
    • =>The encoded string may be corrupted. Perhaps: Remember that the encoded string goes here.

Fun fact

-# Did you know that this code was created solely as a hobby by its author, and reached this level of quality just for that purpose?

note

Thank you for reading the README.

created by F69

links

github