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.
agnosticui-astro
Advanced tools
This [Astro integration][astro-integration] enables AgnosticUI's agnostic-astro package in your Astro project.
AgnosticUI's agnostic-astro package is the Astro port of AgnosticUI that leverages XElement and Astro components. These UI components take advantage of the Astro's unique HTML-only templating with no client-side runtime capabilities helping you to create applications with blazingly fast performance and fully passing Lighthouse scores 🔥 💪
There are two ways to add integrations to your project. Let's try the most convenient option first!
astro add
commandAstro includes a CLI tool for adding first party integrations: astro add
. This command will:
astro.config.*
file to apply this integrationTo install agnosticui-astro
, run the following from your project directory and follow the prompts:
# Using NPM
npx astro add agnosticui-astro
# Using Yarn
yarn astro add agnosticui-astro
# Using PNPM
pnpx astro add agnosticui-astro
If you run into any hiccups, feel free to log an issue on our GitHub and try the manual installation steps below.
First, install the agnosticui-astro
integration like so:
npm install agnosticui-astro
Then, apply this integration to your astro.config.*
file using the integrations
property:
astro.config.mjs
import { defineConfig } from 'astro/config';
import agnosticAstro from 'agnosticui-astro';;
export default defineConfig({
integrations: [agnosticAstro()]
});
Visit AgnosticUI's agnostic-astro package documentation for configuration options and more usage guidance. Also see the [Astro Integration Documentation][astro-integration] for more on how to use integrations.
In one tab and in this same directory, build the integration and use pack
to generate a tarball:
npm run build && npm pack
In another tab go to /test
and install the tarball and run the app:
# of course the tarball name will likely be different
npm i ../agnosticui-astro-0.0.1.tgz && npm run dev
npm run build && npm pack
FAQs
Astro + AgnosticUI integration
The npm package agnosticui-astro receives a total of 19 weekly downloads. As such, agnosticui-astro popularity was classified as not popular.
We found that agnosticui-astro 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.