Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

yamilquery-excel

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yamilquery-excel

Lector de archivos o directorios con contenido en formato Excel y CSV. Almacena el contenido obtenido un objeto JSON.

  • 1.1.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
1
Weekly downloads
 
Created
Source

YamilQuery-Excel

Lector especialmente adaptado para leer documentos de tipo xls, xlsx y csv.

  • Este lector permite lo siguiente.
    • Leer ficheros xls, xslx y csv
    • Leer todos los archivos especificando un directorio
    • Leer un archivo en particular
    • Leer y almacenar el contenido en un objeto

Versión

1.1.1

Requerimientos

YamilQuery-Excel requiere los siguientes módulos:

  • node-xlsx
  • csvdata

Instalación

YamilQuery-Excel requiere Node.js v4+ para ejecutarse correctamente.

$ npm install yamilquery-excel --save

Uso

Excel = require('yamilquery-excel')
var test_excel = new Excel()
test_excel.readDirectory('test/xlsx').then(function(data){
	console.log(data)
})

Usar con co generator

co = require('co')
Excel = require('yamilquery-excel')
co(function*(){
	var test_excel = new Excel()
	var data = yield test_excel.readFile('test/csv/matriz.csv')
	console.log(data)
})

Keywords

FAQs

Package last updated on 26 May 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc