
Security News
Feross on TBPN: Socket's Series C and the State of Software Supply Chain Security
Feross Aboukhadijeh joins TBPN to discuss Socket's $60M Series C, 500%+ ARR growth, AI's impact on open source, and the rise in supply chain attacks.
@daytona-io/daytona-web
Advanced tools
This package was created through the Backstage CLI.
The plugin provides the frontend components required for Daytona Authentication (daytonaApiFactory) and Sign-In (daytonaSignInProvider). These components will ease the implementation for Daytona authentication using OAuth in Backstage.
Install the package via Yarn in your Backstage root directory:
# From your Backstage root directory
yarn --cwd packages/app add @daytona-io/daytona-web
Backstage requires ApiFactory to interact with Daytona OAuth library and a sign-in provider. Follow the below steps:
In Backstage folder packages/app/src, add the below snippet in apis.ts file.
// In packages/app/src/apis.ts
import { daytonaApiFactory } from '@daytona-io/daytona-web';
// Add the Daytona ApiFactory to the list of available APIs
export const apis: AnyApiFactory[] = [
{/* other ApiFactory here */}
daytonaApiFactory
];
Add the following to Backstage App.tsx file.
// In packages/app/src/App.tsx
import { daytonaSignInProvider } from '@daytona-io/daytona-web';
// Add the Daytona Sign-In Provider to the available sign-in providers
const app = createApp({
{/* other api, bind routes here */}
components: {
SignInPage: props => <SignInPage {...props} auto providers={['guest',daytonaSignInProvider]} />,
},
});
FAQs
_This package was created through the Backstage CLI_.
We found that @daytona-io/daytona-web 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
Feross Aboukhadijeh joins TBPN to discuss Socket's $60M Series C, 500%+ ARR growth, AI's impact on open source, and the rise in supply chain attacks.

Security News
OSV withdrew 157 OSV malware reports after automated false positives incorrectly flagged trusted npm and PyPI packages, sending bad records into tools that rely on OSV data.

Research
/Security News
TrapDoor crypto stealer hits 36 malicious packages across npm, PyPI, and Crates.io, targeting crypto, DeFi, AI, and security developers.