Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@awesome-cordova-library/inappbrowser
Advanced tools
This plugin provides a web browser view that displays when calling
id: plugin-inappbrowser title: Inappbrowser tags:
You can show helpful articles, videos, and web resources inside of your app. Users can view web pages without leaving your app.
cordova plugin add cordova-plugin-inappbrowser
npm install @awesome-cordova-library/inappbrowser
npm install cordova-plugin-inappbrowser
npm install @awesome-cordova-library/inappbrowser
npx cap sync
class InAppBrowser {
static open(
url: string,
target: "_self" | "_blank" | "_system",
options?: string | InAppBrowserOptions
): InAppBrowserType | Window | null;
}
import InAppBrowser from "@awesome-cordova-library/inappbrowser";
// Open Joazco.com
InAppBrowser.open("https://joazco.com", "_blank", "location=yes");
const useInAppBrowser: () => (
url: string,
target: "_self" | "_blank" | "_system",
options?: string | InAppBrowserOptions
) => Window | InAppBrowserType | null;
import useInAppBrowser from "@awesome-cordova-library/inappbrowser/lib/react";
import { InAppBrowserType } from "@awesome-cordova-library/inappbrowser/lib/types";
function App() {
const open = useInAppBrowser();
const openJoazco = () => {
const ref: InAppBrowserType = open("https://joazco.com", "_blank", {
location: "yes",
footer: "yes",
fullscreen: "yes",
hidden: "yes",
}) as InAppBrowserType;
setTimeout(() => ref.show(), 1000);
};
return (
<div>
<button onClick={openJoazco}>Open Joazco.com</button>
</div>
);
}
FAQs
This plugin provides a web browser view that displays when calling
The npm package @awesome-cordova-library/inappbrowser receives a total of 4 weekly downloads. As such, @awesome-cordova-library/inappbrowser popularity was classified as not popular.
We found that @awesome-cordova-library/inappbrowser 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.