Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@nodefony/elastic-bundle
Advanced tools
./config/config.js
module.exports = {
system: {
/**
* BUNDLES CORE
*/
elastic: true
}
}
./app/config/config.js
/**
* OVERRIDE ELASTIC BUNDLE SETTINGS
* elasticsearch
*
* options : https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/client-configuration.html
*
*/
"elastic-bundle": {
elasticsearch: {
globalOptions: {
ssl: {
//key : path.resolve("config","certificates","server","privkey.pem"),
//cert : path.resolve("config","certificates","server","cert.pem"),
//ca : path.resolve("config","certificates","ca","nodefony-root-ca.crt.pem")
}
},
connections: {
main: {
name: "main",
nodes: ["http://localhost:9200"],
log: {
request: false,
response: false,
sniff: true,
resurrect: true
},
maxRetries:10,
sniffInterval: 5000,
pingTimeout: 5000,
requestTimeout:5000
}
}
}
},
./controller/elasticController.js
/**
* @Route ("/test/elastic")
*/
module.exports = class elasticController extends nodefony.controller {
constructor(container, context) {
super(container, context);
this.elastic = this.get("elastic");
this.setJsonContext();
}
async getClient() {
let conn = await this.elastic.getConnection("main");
return conn.client;
}
async createIndex(index, id) {
if (!index) {
index = "nodefony";
}
const client = await this.getClient();
const {
body
} = await client.indices.exists({
index: index
});
let res = null;
if (!body) {
res = await client.index({
index: index,
id: id,
body: {
version: this.kernel.version,
package: this.kernel.package
}
});
} else {
this.log(`Index : ${index} Already exist !!! `);
}
return res;
}
async ping() {
return await this.client.ping();
}
/**
* @Method ({"GET"})
* @Route ("/index/{id}" , name="test-elastic-search", defaults={"id" = 1},requirements={"id" = "\d+")
*
*/
async indexAction(id) {
const client = await this.getClient();
await this.createIndex("nodefony", "id");
let get = null ;
try{
get = await client.get({
index: 'nodefony',
id: id
});
return this.renderJson(get)
.catch((e) => {
throw e;
});
}catch(e){
if ( e && e.meta && e.meta.statusCode ){
return this.renderJson(e, e.meta.statusCode )
.catch((e) => {
throw e;
});
}
return this.renderJson(e )
.catch((e) => {
throw e;
});
}
}
};
FAQs
Nodefony Framework Bundle elasticsearch
We found that @nodefony/elastic-bundle demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.