Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
flexmonster-compressor
Advanced tools
Flexmonster Compressor for Node.js – a special server-side compression tool that helps you to increase data loading speed from server to Flexmonster Pivot Table component.
Flexmonster Compressor for Node.js is a special server-side compression tool that helps you to increase data loading speed from server to Flexmonster Pivot Table & Charts.
Flexmonster Compressor can compress the data from the following sources:
Flexmonster Pivot Table & Charts is a component for interactive pivot reports that can be inserted to a web page or a web application. It’s a powerful JavaScript tool to visualize your business data.
Flexmonster Pivot is a cross-platform web component that seamlessly works on any browser (Chrome, Firefox, Internet Explorer, Safari or Opera) across Windows, macOS, Linux, iOS or Android.
Start by installing Flexmonster Compressor as a node module and save it as a dependency in your package.json:
npm i flexmonster-compressor --save
Connect to the database or file and compress the data. Here is an example on how to create API endpoint that returns data from MongoDB:
const compressor = require('flexmonster-compressor');
const MongoClient = require('mongodb').MongoClient;
MongoClient.connect("mongodb://demo:p123456@ds121251.mlab.com:21251/flexmonster", { useNewUrlParser: true }, (err, client) => {
if (err) throw err;
console.log("Connected successfully to MongoDB.");
app.set("db", client.db("flexmonster"));
});
app.get('/mongodb', (req, res) => {
const db = req.app.get('db');
const result = db.collection('sample_data').find({}, { projection: { '_id': false } }).stream();
let stream = compressor.compressJsonStream(result);
stream.on('data', data => res.write(data));
stream.on('end', () => res.end());
});
To get the data on the front-end, please use the following code:
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<link href="https://cdn.flexmonster.com/flexmonster.min.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="https://cdn.flexmonster.com/flexmonster.js"></script>
</head>
<body>
<div id="pivot"></div>
<script type="text/javascript">
new Flexmonster({
container: "#pivot",
componentFolder: "https://cdn.flexmonster.com/",
report: {
dataSource: {
dataSourceType: "ocsv",
filename: "/mongodb"
}
}
})
</script>
</body>
</html>
The sample project can be found at GitHub.
Also you can get all support from development team on Forum. Flexmonster developers react fast to the questions and provide professional assistance.
FAQs
Flexmonster Compressor for Node.js – a special server-side compression tool that helps you to increase data loading speed from server to Flexmonster Pivot Table component.
We found that flexmonster-compressor 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.