
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
elasticsearch-non-nullable
Advanced tools
A plugin for the Elasticsearch JavaScript client that enforces non-nullable fields when indexing
Elasticsearch does not come with built-in support for specifying certain fields as non-nullable. This plugin module adds this capability to the Elasticsearch JavaScript client by checking the data before it is indexed.
Note that "non-nullable" in this case does not mean "truthy" or "defined", but rather that the field cannot strictly equal null
. That is, undefined
is still a valid value.
Use this plugin in conjunction with elasticsearch-required to enforce required, non-nullable fields.
To install elasticsearch-required
npm install elasticsearch
npm install --production elasticsearch-non-nullable
This plugin augments client.indices.putMapping()
to allow for the specification of non-nullable fields. As such, it is required that you call putMapping
on every instance of the Elasticsearch client before indexing so that the plugin can be initialized with what fields are non-nullable.
The following example demonstrates putting the mapping and indexing:
var Client = require('elasticsearch').Client;
require('elasticsearch-non-nullable');
// create the client
var client = ...
// put the mapping with "non-nullable" property
client.putMapping({
"index" : "test",
"type" : "tweet",
"body" : {
"tweet" : {
"properties" : {
"message" : {
"type" : "string",
"non-nullable" : true
}
}
}
}
}).then(function () {
// the following with result in "null value" error
return client.index({
"index" : "test",
"type" : "tweet",
"body" : {
"message" : null
}
});
});
To run the unit tests
npm test
putMapping()
when multiple indices are specifiedMIT
FAQs
A plugin for the Elasticsearch JavaScript client that enforces non-nullable fields when indexing
The npm package elasticsearch-non-nullable receives a total of 4 weekly downloads. As such, elasticsearch-non-nullable popularity was classified as not popular.
We found that elasticsearch-non-nullable 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.