
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
@zbanx/excel-viewer
Advanced tools
A simple excel viewer.
import '@zbanx/excel-viewer/styles.css'
import { ExcelViewer } from '@zbanx/excel-viewer'
// we will use xlsx to read excel file
import * as XLSX from 'xlsx-js-style'
const fileInput = document.querySelector(`#myInput[type='file']`)
fileInput.onchange = (e) => {
const file = e.target.files?.[0]
if (file) {
const reader = new FileReader()
reader.onload = (event) => {
const buffer = new Uint8Array(event.target.result)
const workbook = XLSX.read(buffer, { type: 'array' })
const sheetName = workbook.SheetNames[0]
const sheet = workbook.Sheets[sheetName]
const data = XLSX.utils.sheet_to_json(sheet, {
header: 1,
defval: null,
raw: false
})
const merges = sheet['!merges'] || []
const viewer = new ExcelViewer({
container: document.getElementById('my-container'),
data,
merges,
editable: true
})
}
reader.readAsArrayBuffer(file)
}
}
FAQs
A simple excel viewer.
We found that @zbanx/excel-viewer demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.