Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

263
Views
Descomprimir archivos 3MF en Javascript

Soy nuevo en javascript y quería lograr la tarea de descomprimir archivos 3mf para mi proyecto. Aquí está el siguiente código que estoy intentando.

 LocalConverter.prototype.unzip3MFTextures = async function(fileToUnpack){ const self = this; return new Promise(function(resolve, reject) { yauzl.open(fileToUnpack, function(err, zipfile) { if (err) throw err; zipfile.on("error", function(err) { throw err; }); zipfile.on("entry", function(entry) { console.log(entry); console.log(entry.getLastModDate()); if (/\/$/.exec(entry)) return; zipfile.openReadStream(entry, function(err, readStream) { if (err) throw err; readStream.pipe(process.stdout); }); }); }); }); }

No puedo extraer los archivos en el archivo 3MF. ¿Puede alguien sugerirme una forma de solucionar esto?

about 4 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!