Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
To better maintain the Axlsx ecosystem, all related gems have been forked or moved to the following community organization:
Axlsx is an Office Open XML Spreadsheet generator for the Ruby programming language. With Axlsx you can create Excel worksheets with charts, images (with links), automated and fixed column widths, customized styles, functions, tables, conditional formatting, print options, comments, merged cells, auto filters, file and stream serialization as well as full schema validation. Axlsx excels at helping you generate beautiful Office Open XML Spreadsheet documents without having to understand the entire ECMA specification.
Author xlsx documents: Caxlsx is made to let you easily and quickly generate professional xlsx based reports that can be validated before serialization.
Generate 3D Pie, Line, Scatter and Bar Charts: With Caxlsx chart generation and management is as easy as a few lines of code. You can build charts based off data in your worksheet or generate charts without any data in your sheet at all. Customize gridlines, label rotation and series colors as well.
Custom Styles: With guaranteed document validity, you can style borders, alignment, fills, fonts, and number formats in a single line of code. Those styles can be applied to an entire row, or a single cell anywhere in your workbook.
Automatic type support: Caxlsx will automatically determine the type of data you are generating. In this release Float, Integer, String, Date, Time and Boolean types are automatically identified and serialized to your spreadsheet.
Automatic and fixed column widths: Caxlsx will automatically determine the appropriate width for your columns based on the content in the worksheet, or use any value you specify for the really funky stuff.
Support for automatically formatted 1904 and 1900 epochs configurable in the workbook.
Add jpg, gif and png images to worksheets with hyperlinks
Reference cells in your worksheet with "A1" and "A1:D4" style references or from the workbook using "Sheet1!A3:B4" style references
Cell level style overrides for default and customized style objects
Support for formulas, merging, row and column outlining as well as cell level input data validation.
Auto filtering tables with worksheet.auto_filter as well as support for Tables
Export using shared strings or inline strings so we can inter-op with iWork Numbers (sans charts for now).
Output to file or StringIO
Support for page margins and print options
Support for password and non password based sheet protection.
First stage interoperability support for GoogleDocs, LibreOffice, and Numbers
Support for defined names, which gives you repeated header rows for printing.
Data labels for charts as well as series color customization.
Support for sheet headers and footers
Pivot Tables
Page Breaks
gem 'caxlsx'
Supported Ruby versions: Caxlsx supports Ruby 2.6 and newer.
Here's a teaser that kicks about 2% of what the gem can do.
Axlsx::Package.new do |p|
p.workbook.add_worksheet(:name => "Pie Chart") do |sheet|
sheet.add_row ["Simple Pie Chart"]
%w(first second third).each { |label| sheet.add_row [label, rand(24)+1] }
sheet.add_chart(Axlsx::Pie3DChart, :start_at => [0,5], :end_at => [10, 20], :title => "example 3: Pie Chart") do |chart|
chart.add_series :data => sheet["B2:B4"], :labels => sheet["A2:A4"], :colors => ['FF0000', '00FF00', '0000FF']
end
end
p.serialize('simple.xlsx')
end
Please see the examples folder for further information on what you can do with this gem Chances are that it has already been implemented. If it hasn't, let's take a look at adding it in.
Detailed documentation is available at:
https://www.rubydoc.info/gems/caxlsx/
Additional documentation is listed below:
⚠ Please do not create issues for questions regarding the usage of axlsx / caxlsx. Look through this README, the examples, and the FAQ, and also check questions tagged axlsx
on Stack Overflow.
Feel free to add your question (including an answer!) to the FAQ if you think it is of general interest.
Currently the following additional gems are available:
.axlsx
renderer to Rails so you can move all your spreadsheet code from your controller into view files.To prevent Formula Injection vulnerabilities, as of version 4.0, axlsx escapes all formulas by default. To permit formulas on a specific cell, please use:
cell.escape_formulas = false
You may set escape_formulas
on the workbook, worksheet, row and/or cell level. Refer to examples/escape_formula.md for details.
To allow formulas globally by default (which was the behavior in axlsx 3.x and prior), you may set the following in an initializer:
Axlsx.escape_formulas = false
As axslx implements the Office Open XML (ECMA-376 spec) much of the functionality is interoperable with other spreadsheet software. Below is a listing of some known issues.
Libre Office
Google Docs
Apple Numbers
p = Axlsx::Package.new
p.workbook.add_worksheet(:name => "Basic Worksheet") do |sheet|
sheet.add_row ["First Column", "Second", "Third"]
sheet.add_row [1, 2, 3]
end
p.use_shared_strings = true
p.serialize('simple.xlsx')
See CONTRIBUTING.md
Originally created by Randy Morgan - @randym
Forked in 2019, to enable the community to maintain the Axlsx ecosystem - https://github.com/caxlsx
Open source software is a community effort. None of this could have been done without the help of our Contributors.
FAQs
Unknown package
We found that caxlsx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.