Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@blockv/threejs-to-v3d
Advanced tools
This module uses the importers on the Three.js library to convert 3D scene files to the .v3d format. It can be used via the command-line, from node, or from the browser.
NOTE: Currently only supports FBX files
First, install the module:
npm install -g threejs-to-v3d
Then use it:
threejs-to-v3d --input file1.fbx file2.jpg --output file.v3d
Require and use it:
require("threejs-to-v3d").convert(["file1.fbx", "file2.jpg"]).then(arraybuffer => fs.writeFile("file.v3d", new Buffer(arraybuffer)));
Include the script on your page:
<script src="threejs-to-v3d.min.js"></script>
Then use it, by passing in an array of File objects:
ThreeJSConverter.convert(files).then(function(arraybuffer) {
saveAs(new File([arraybuffer], "output.v3d"));
});
First, since this module uses some native Node modules, they need to be excluded from packaging in your webpack config:
{
...
externals: [
{ fs: true, "fs.promised": true }
]
...
}
Then, you can require and use it normally:
require("threejs-to-v3d").convert(files).then(arraybuffer => {
saveAs(new File([arraybuffer], "output.v3d"));
});
FAQs
Converts any format supported by ThreeJS to V3D.
The npm package @blockv/threejs-to-v3d receives a total of 1 weekly downloads. As such, @blockv/threejs-to-v3d popularity was classified as not popular.
We found that @blockv/threejs-to-v3d demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.