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.
@capawesome/capacitor-managed-configurations
Advanced tools
Capacitor plugin to access managed configuration settings.
Capacitor plugin to access managed configuration settings.
npm install @capawesome/capacitor-managed-configurations
npx cap sync
See Define managed configurations and follow the instructions to declare the app's managed configurations correctly.
No configuration required for this plugin.
A working example can be found here: robingenz/capacitor-plugin-demo
import { ManagedConfigurations } from '@capawesome/capacitor-managed-configurations';
const getString = async () => {
const result = await ManagedConfigurations.getString({ key: 'server_url' });
return result.value;
};
const getNumber = async () => {
const result = await ManagedConfigurations.getNumber({ key: 'server_port' });
return result.value;
};
const getBoolean = async () => {
const result = await ManagedConfigurations.getBoolean({
key: 'download_on_cellular',
});
return result.value;
};
getString(options: GetOptions) => Promise<GetResult<string>>
Fetches the value associated with the given key, or null
if no mapping exists for the given key.
Only available on Android and iOS.
Param | Type |
---|---|
options | GetOptions |
Returns: Promise<GetResult<string>>
getNumber(options: GetOptions) => Promise<GetResult<number>>
Fetches the value associated with the given key, or null
if no mapping exists for the given key.
Only available on Android and iOS.
Param | Type |
---|---|
options | GetOptions |
Returns: Promise<GetResult<number>>
getBoolean(options: GetOptions) => Promise<GetResult<boolean>>
Fetches the value associated with the given key, or null
if no mapping exists for the given key.
Only available on Android and iOS.
Param | Type |
---|---|
options | GetOptions |
Returns: Promise<GetResult<boolean>>
Prop | Type | Description |
---|---|---|
value | T | null | The value of the configuration entry, or null if no mapping exists for the given key. |
Prop | Type | Description |
---|---|---|
key | string | Unique key for the configuration entry. |
On Android, see Set up device owner for testing and follow the instructions to set up a device owner testing environment.
On iOS, you need to install the app as a managed app with a MDM solution.
See CHANGELOG.md.
See LICENSE.
This plugin is based on the Capacitor Managed Configurations plugin. Thanks to everyone who contributed to the project!
FAQs
Capacitor plugin to access managed configuration settings.
The npm package @capawesome/capacitor-managed-configurations receives a total of 959 weekly downloads. As such, @capawesome/capacitor-managed-configurations popularity was classified as not popular.
We found that @capawesome/capacitor-managed-configurations 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.