
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@api-platform/admin
Advanced tools
API Platform Admin is a tool to automatically create a beautiful (Material Design) and fully-featured administration interface for any API supporting the Hydra Core Vocabulary, including but not limited to all APIs created using the API Platform framework.
The generated administration is a 100% standalone Single-Page-Application with no coupling to the server part, according to the API-first paradigm.
API Platform Admin parses Hydra or OpenAPI documentations, then uses the awesome React-admin library (and React) to expose a nice, responsive, management interface (Create-Retrieve-Update-Delete) for all available resources.
You can also customize all screens by using React-admin components and even raw JavaScript/React code.
yarn add @api-platform/admin
import React from 'react';
import ReactDOM from 'react-dom';
import { HydraAdmin } from '@api-platform/admin';
const Admin = () => <HydraAdmin entrypoint="https://demo.api-platform.com" />; // Replace with your own API entrypoint
ReactDOM.render(<Admin />, document.getElementById('root'));
Or alternatively:
import React from 'react';
import ReactDOM from 'react-dom';
import {
AdminGuesser,
hydraDataProvider,
hydraSchemaAnalyzer,
} from '@api-platform/admin';
const Admin = () => (
<AdminGuesser
// Use your custom data provider or resource schema analyzer
dataProvider={hydraDataProvider('https://demo.api-platform.com')}
schemaAnalyzer={hydraSchemaAnalyzer()}
/>
);
ReactDOM.render(<Admin />, document.getElementById('root'));
The documentation of API Platform Admin can be browsed on the official website.
Created by Kévin Dunglas. Sponsored by Les-Tilleuls.coop. Commercial support available upon request.
2.6.3
JSON.stringify
when there is a toJSON
property in a form data valueFAQs
Automatic administration interface for Hydra-enabled APIs.
The npm package @api-platform/admin receives a total of 1,478 weekly downloads. As such, @api-platform/admin popularity was classified as popular.
We found that @api-platform/admin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.