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.
fos-routing
Advanced tools
es6 library for client generate path from symfony2 routing
npm install fos-routing --save
To work with Symfony2, you need to generate a js or json file with paths with fos:js-routing
php bin/console fos:js-routing:dump --callback="module.exports = " --target="any_custom_path || web/dist/fos_js_routes_export.js"
The --target
parameter is made, for example, it can be any
Then, you should connect the newly created file in fos-routing
// myRouting.js
// import library fos-rouging
import Routing from 'fos-routing';
// import file with routes data
import RoutingData from 'path_to_folder_when_generate_file_with_routing_data || /web/dist/fos_js_routes_export';
// set data
Routing.setData(RoutingData);
// export library
export default Routing;
In the main project
// In the main project
import Routing from 'path_to_myRouting.js';
console.log(Routing.generate('demo_path'));
Method | Params | Description |
---|---|---|
setData | data:Array | Set data |
generate | 1. routing_name : String 2.params :Object of params | Generate routing by routing_name with params , return string |
FAQs
js routing for symfony 2.x
The npm package fos-routing receives a total of 29,723 weekly downloads. As such, fos-routing popularity was classified as popular.
We found that fos-routing 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.