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.
add-variable-declarations
Advanced tools
Add variable declarations for implicit global variable assignments.
# via yarn
$ yarn add add-variable-declarations
# via npm
$ npm install add-variable-declarations
import { addVariableDeclarations } from 'add-variable-declarations';
const source = `
PI = 3.14;
radius = 8;
circumference = 2 * PI * radius;
`;
console.log(addVariableDeclarations(source).code);
// var PI = 3.14;
// var radius = 8;
// var circumference = 2 * PI * radius;
https://github.com/eventualbuddha/add-variable-declarations.git
yarn install
yarn run build
yarn run build -- --watch
yarn test
This project is used by decaffeinate to add variable declarations to converted CoffeeScript code. This project is not intended to allow you to write JavaScript without variable declarations, as I consider that a bad practice for the same reasons it's a bad practice in CoffeeScript.
var
? Shouldn't this use let
and const
?Yes, but not all situations allow the use of let
and const
, such as when
the variable binding takes advantage of
hoisting.
If you want let
and const
you can use this library in combination with
esnext which will turn all eligible var
declarations into let
or const
as appropriate.
MIT
FAQs
Add variable declarations for global assignments.
The npm package add-variable-declarations receives a total of 10,592 weekly downloads. As such, add-variable-declarations popularity was classified as popular.
We found that add-variable-declarations demonstrated a healthy version release cadence and project activity because the last version was released less than 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.