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.
codemirror-lang-spreadsheet
Advanced tools
Implements spreadsheet functions support for the CodeMirror v6 code editor 📜
To build this I used the paper "A Grammar for Spreadsheet Formulas Evaluated on Two Large Datasets" and XLParser as a basis.
🔠 Support for different idioms (and easily extensible to include new ones)
🧮 Support for different decimal separators
npm install codemirror-lang-spreadsheet
First import as shown below:
import {spreadsheet} from "codemirror-lang-spreadsheet";
Call the spreadsheet
function inside the editor instance. This function expects an options object as an argument. Available options are idiom
(string with desired language, eg "en-US"
) and decimalSeparator
(string with decimal separator: "."
or ";"
)
new EditorView({
extensions: [
// ... your other CodeMirror extensions
// ...
spreadsheet({
idiom: "en-US"
decimalSeparator: "."
})
],
parent: document.getElementById("editor")
});
👉 For a complete demo with highlighting, autocomplete and prettier go to: codemirror-app-spreadsheet
Idioms are used for keywords like booleans (TRUE
, FALSE
) and error tokens (like #REF!
, #NAME!
, ...).
Currently supported:
It's pretty simple to add support for other idioms. See the contribution section.
Contributions are welcome, but for every feature added, tests must be added.
To build:
npm run build
Running the tests:
npm run test
To add support for a new idiom follow the steps below:
In the tokens.ts
file, add the idiom as a new supported type:
TsupportedIdioms = 'en-US' | 'pt-BR';
Still in this file, for each of the i18n
object keys, add a value with the respective idiom translation. There is no fallback to a default idiom, so even if a token is the same in another idiom, it has to be repeated.
const i18n = {
BoolToken: {
'en-US': ['TRUE', 'FALSE'],
'pt-BR': ['VERDADEIRO', 'FALSO']
},
RefErrorToken: { // repeated token
'en-US': '#REF!',
'pt-BR': '#REF!'
},
//...
}
Now it is necessary to create tests. Create a new folder named after the idiom inside the test/i18n
folder. Copy the boolean.txt
and errors.txt
files from another idiom and adapt them to the new idiom.
This site is a good reference for translations.
When extending support for a new idiom open a PR 💙
FAQs
Spreadsheet language support for CodeMirror
We found that codemirror-lang-spreadsheet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.