JSPM

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

Our Data Caching functions. These support files, JSON, JS Objects, any primitive, etc. And provide common keying support.

Package Exports

  • mcode-cache
  • mcode-cache/index.js
  • mcode-cache/package.json

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 (mcode-cache) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

MicroCODE's 'mcode-cache' package

A public NPM Package of our internal data caching tools for Frontend and Backend JavaScript NodeJS projects.

This is an extremely 'light weight' package with dependencies on our internal 'data' and 'log' packages and on Redis for the actual cache.

Description

This is our own internal data caching code for common operations like caching files contents, data structures, lists (for out mcode-list processing), and automatic key creation and standardization.

  • To demo, from the CLI in the package folder...
> node examples
  • Example of package use...

  • Corresponding results (logged to console by our mcode-log functions)...

Dependencies

  • Production
  1. mcode-log - our standard logging package (just for displaying errors or test results)
  2. Redis - Remote Dictionary Server, the standard community addition.
  • Development
  1. Node.JS - standard runtime environment
  2. JSDocs - our preferred JavaScript documentation system
  3. Jest.JS - our preferred JavaScript testing framework

Usage

When using data caching it's best to start with a good definition of the objects your App will cache and why.

USE CASE #1: Files, for speed. When a Web App frequently goes to disk, HDD or SSD, to serve clients there is inherent latency. Automatically caching these frequenlty used files in RAM and serving them from there is typically 10X faster.

Normal, uncached code retrieving a file...

        const iconContent = await fs.fileRead(iconPath, 'utf8');
                                  -----------

To cache for repeated usage with our package, just chnage "fs.readFile()" to "mcode.fileRead()"...

        const iconContent = await mcode.fileRead(iconPath, 'utf8');
                                  --------------

...this does three (3) things within one line change:

  1. Automatically generates a unique Redis Key under your App's namespace representing this file.
  2. Reads and returns the file contents.
  3. Caches the file for subsequent use.
  4. Retrieves the file from cache in the future by the exact same line of code.

    Note what you did **not** have to do...
  • No creation of a unique key required in your code.
  • No explicit code to conditionally retrieve from cache vs. read the file.
  • No storage of the key in your code to benefit from the caching, just read the same file path again with "mcode.fileRead()"

USE CASE #2: Context, for speed. When building a rich App a large part of the UX is context, the feeling that the App knows (and remembers) what you are doing. This is held in two forms of memory analogous tohuman 'short term' and 'long term' memory...

  • CONTEXT - 'short term' memory - breadcrumbs, App module, forward/back navigation, etc.
  • CONFIGURATION - 'long term' memory - user preferences, app settings, etc.

Both of these shoudl be cached, with different Time-To-Live (TTL), and different invalidation schemes. This is all handling in a standard way in our package, for our App designs.

USE CASE #3: Database, for speed. Because anything you can retrieve from RAM instead of the disk based DB will be at 10X to 50X faster.

Installing

  • Get to a terminal session in the local repo folder of your project.
  • Use 'npm install' to load the package. It can be used 'stand-alone'...
npm install mcode-cache

Testing

This package includes a simple demo module: examples.js. Running it directly will show you a set of examples for using fileRead() and fileChange().

  • From your project directory after installation...
node .\node_modules\mcode-cache\examples

...this will demonstrate thru console logging various uses of the mcode-cache functions.

  • To test with JEST:
  • From the mcode-cache package directory...
npm install --save-dev jest
npm test
  • A view of the JEST tests in the console...

Included Functions

These are the functions we want at the ready in any module for development and debug.

Function Description Usage
General
redisGet Gets the value of a Key from the Redis Cache, from App's namespace. value = mcode.redisGet(path)
redisSet Sets the value of a Key from the Redis Cache, in App's namespace. value = mcode.redisGet(path)
redisDrop Drops a key from the Redis Cache. count = mcode.redisDrop(key)
redisDropAll Drops all keys from a namespace in the Redis Cache, defaults to current. count = mcode.redisDropAll(namespace)
redisListAll Lists all keys from a namespace in the Redis Cache, defaults to current. array = mcode.redisListAll(namespace)
redisMakeKey Generates a well formatted Redis Key form a resource path. key = mcode.redisMakeKey(path)
redisClose Closes the connection to the current Redis Server. void mcode.redisClose(path)
File Specific These directly replace fs.readFile('filepath', 'encoding')
fileRead Reads a file from storage with a standard 'path' and caches it. contents = mcode.fileRead(path, encoding)
fileWrite Writes a file to storage with a standard 'path' and caches it. state = mcode.writeRead(path, contents, encoding)
fileDrop Invalidates a standard 'path', forcing a fresh read/cache on next access. count = mcode.fileDrop(path)
fileMakeKey Generates a well formatted Redis Key from a standard file path. key = mcode.fileMakeKey(path)
fileGetRoot Gets the root directory for Redis Keys based on app's execution path. path = mcode.fileGetRoot(path)
Property Description Usage
redisReady The Cache is ready for use, Redis online, Namespace is established. if (mcode.redisReady)
redisTTL The current Time-To-Live, the expiration in milliseconds of current tags. mcode.redisTTL = 30000
redisURL The network address of the Redis Server, 'redis://:. mcode.redisURL = 'redis://127.0.0.1:6379'
redisNamespace The namespace for all tags until changed, defaults to 'MicroCODE'. mcode.redisNamespace = 'MyAppName'

Documentation

We believe is explicit code documentation, for other users, and for our 'future selves'.
JSDocs is a standardized system for documenting functions and data structures that produces three (3) primary outputs:

  1. Inline documentation for the coder.
  2. Intellisense popup documentation for the coder for every function.
  3. External 'reference manual' documentation for your entire code base, if used consistently.
  • This entire project--like all our projects--is documented with JSDocs.

  • To install JSDocs use, get to a terminal session in the project folder...

npm install --save-dev jsdoc
  • Configure JSDoc processing in...
jsdoc.json
  • To regenerate the JSDocs from all source code, use the following command (from the project root directory)...
jsdoc -c .jsdoc.json

...then open ./docs/index.html

Help

Contact Timothy McGuire, support@mcode.com.

Terminology

Word or Acronym Description/Definition
NPM Node Package Manager, actually “Node PM”, “Node pkgmakeinst” a system to deploy, install, and maintain NodeJS Apps. (PM was a BASH utility).
NVM Node Version Manager, a tool that supports changing NodeJS versions.
MERN MongoDB, Express, React, Node JS.
MongoDB A ‘NoSQL’ database designed for Cloud applications, also referred to as a ‘Document Store’.
Express Express is not a database but rather an ‘extensible routing language’ for communication between a Client and a Server.
React A Web UI development system, a JavaScript library developed by Facebook and made public—and Open Source—since 2013.
Redis A Remote Dictionary Server, a standard through the web development industry.
Node JS A development stack that executes from a local file store—on a local Server—instead of from a network of servers.
JSDocs A toolset to automatically generate API-style documentation from source code tagging.

Authors

Contributor's names and contact info...

  • Timothy McGuire @TimothyMcGuire - Founder, President-CEO of MicroCODE, Inc. a software and controls engineering company in Detroit, Michigan USA.

Version History

  • 0.5.0 - 0.5.2
    • All 'mcode-*' packages updated with 'ready()' only implemented in 'mcode-log'.
  • 0.4.0
    • made public and synchronized into mcode-package along with mcode-data, mcode-log, mcode-list.
  • 0.0.5
    • made public to test integration - NOT READY FOR USE.
  • 0.0.4
    • Updated README, uninstalled JSDocs and Jest for publishing.
  • 0.0.3
    • Corrected JSDocs and Jest to DEV ONLY dependencies.
  • 0.0.2
    • Added JSDocs, Jest and updated README.
  • 0.0.1
    • Initial movement of our internal code into an NPM package for ease of use in other projects.

Future Development

  • 0.1.*
    • Any additional core code we will develop for general list processing work.
    • Complex function execution with passed arguments or passed functions.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

MicroCODE Mantra

MicroCODE, Inc. was founded in 1987 as a controls engineering and software development company.
We specialize in manufacturing and quality control applications that must run 24x7x365 for years at a time.

Our slogan, distilled from over three decades of developing, testing, installing, and supporting 24x7x365 manufacturing applications, is..