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.
localize-router-http-loader
Advanced tools
A loader for localize-router that loads config using Http
A loader for localize-router that loads config using Http
This package is built for angular version >=4.3. If you are still using old Angular please use
localize-router-http-loader
version <1.0.0
npm install --save localize-router-http-loader
In order to load localize-router
config via http, you must initialize LocalizeRouterModule with LocalizeRouterHttpLoader:
// Required for AoT
export function HttpLoaderFactory(translate: TranslateService, location: Location, settings: LocalizeRouterSettings, http: HttpClient) {
return new LocalizeRouterHttpLoader(translate, location, settings, http);
}
LocalizeRouterModule.forRoot(routes, {
parser: {
provide: LocalizeParser,
useFactory: HttpLoaderFactory,
deps: [TranslateService, Location, LocalizeRouterSettings, HttpClient]
}
})
LocalizeRouterHttpLoader
has one optional parameter path
which points to json config file. Default value is assets/locales.json
.
export function HttpLoaderFactory(translate: TranslateService, location: Location, settings: LocalizeRouterSettings, http: HttpClient) {
return new LocalizeRouterHttpLoader(translate, location, settings, http, 'my/custom/url/to/file.json');
}
JSON config file has following structure:
{
"locales": ["en", "de", ...],
"prefix": "MY_PREFIX"
}
interface ILocalizeRouterParserConfig {
locales: Array<string>;
prefix?: string;
}
Prefix field is not mandatory and default value is empty string.
Licensed under MIT
FAQs
A loader for localize-router that loads config using Http
The npm package localize-router-http-loader receives a total of 108 weekly downloads. As such, localize-router-http-loader popularity was classified as not popular.
We found that localize-router-http-loader 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.