
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
deepest-lore
Advanced tools
deepest-lore Tools for creating and managing your deepest lore.
deepest-lore uses a mini-"relational database", wherein information is
organized into tables of rows and columns.
An entity represents a "thing", with a unique, invariant identifier.
For instance, you might have an entity per recipe, or per ingredient.
A mapping specifies information for a unique combination of entities.
For instance, you might map ingredients to recipes.
An identifier is a string 6 characters in length using the character set
_abcdefghijklmnopqrstuvwxyz0123456789.
These would usually not be shown to the end-user, but instead be used to keep consistent references between versions. As such, they should be invariant (never change).
Identifiers can be stored as an unsigned 32-bit integer.
The range 0-4095999999 is reserved for current and future characters, but the range 4096000000-4294967295 will never be generated from a six-character string, and can safely be used for "special" values.
| Six-character string | 32-bit integer |
|---|---|
______ | 0 |
zzzzzz | 3780923076 |
for_eg | 1704192617 |
Schema documents define a set of localizations, which have identifiers.
Any information which is localized is then specified once per localization, keyed by its identifier.
All files are expected to be UTF-8 encoded.
{base directory}/schema.jsonThe schema, as defined in @deepest-lore/data-model.
{base directory}/entities/{entity type identifier}.csvEach row defines a single entity instance while the first row defines the columns. The following patterns are supported:
| Pattern | Meaning |
|---|---|
$ | The column defines the entity instance's unique identifier. |
col_id | The column defines the value of unlocalized entity type column col_id. |
col_id:loc_id | The column defines the value of localized entity type column col_id for localization loc_id. |
$,name__:en_gb_,name__:fr_fr_,catgry,weapon,food__,salqty,weight
grpfrt,Grapefruit,Pamplemousse,fruit_,❌,✔️,1,5
lemon_,Lemon,Citron,fruit_,TRUE,Yes,4,2
pebble,Pebble,Caillou,rock__,FALSE,No,50,1
| $ | name__:en_gb_ | name__:fr_fr_ | catgry | weapon | food__ | salqty | weight |
|---|---|---|---|---|---|---|---|
| grpfrt | Grapefruit | Pamplemousse | fruit_ | ❌ | ✔️ | 1 | 5 |
| lemon_ | Lemon | Citron | fruit_ | TRUE | Yes | 4 | 2 |
| pebble | Pebble | Caillou | rock__ | FALSE | No | 50 | 1 |
{base directory}/mappings/{mapping identifier}.csvSimilarly to entity type files, each row defines a single mapping while the first row defines the columns. The following patterns are supported:
| Pattern | Meaning |
|---|---|
$key_id | The column defines the mapping key key_id. |
col_id | The column defines the value of unlocalized entity type column col_id. |
col_id:loc_id | The column defines the value of localized entity type column col_id for localization loc_id. |
$item__,$vendor,price_
lemon_,grngcr,0.8
pebble,grngcr,0.5
grpfrt,grngcr,2.4
pebble,rocrus,0.4
| $item__ | $vendor | price_ |
|---|---|---|
| lemon_ | grngcr | 0.8 |
| pebble | grngcr | 0.5 |
| grpfrt | grngcr | 2.4 |
| pebble | rocrus | 0.4 |
/index.htmlShows the schema document's description and a list of all entity types.
/entity-types/{entity type identifier}/index.htmlShows the entity type's description and a list of all its instances.
/entity-types/{entity type identifier}/instances/{entity instance identifier}Shows the entity instance's column values and a list of all entity and mapping instances which reference it.
Warnings will be printed but do not count as an error by default.
Example: deepest-lore {parameters}.
--fs-import {path}The base directory from which to import; runs once then stops. Exits on error and returns a non-zero exit code.
Uses @deepest-lore/fs-import.
--fs-import-watch {path}The base directory from which to import; runs once then waits for changes before running again until terminated by the user. Aborts run but does not exit on error.
Uses @deepest-lore/fs-import-watch.
--warnings-as-errorsWhen present, any warnings generated by @deepest-lore/validator will instead be treated as errors. The standard error handling logic will then apply.
--html-export {path}The base directory to which to export; this will be deleted and replaced with a new directory containing the exported HTML.
Watch builds will not be minified.
Uses @deepest-lore/html-export.
FAQs
Tools for creating and managing your deepest lore.
We found that deepest-lore demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.