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.
This Astro integration provides an image component.
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 astro-img
, run the following from your project directory and follow
the prompts:
# Using NPM
npx astro add astro-img
# Using Yarn
yarn astro add astro-img
# Using PNPM
pnpx astro add astro-img
First, install the astro-img
integration like so:
npm install -D -E astro-img
Then, apply this integration to your astro.config.*
file using the
integrations
property:
astro.config.ts
import type { AstroUserConfig } from "astro";
import img from "astro-img";
export default (): AstroUserConfig => {
return {
integrations: [img()],
};
};
You can override any of the default options from the configurations of:
or disable them entirely:
import type { AstroUserConfig } from "astro";
import img from "astro-img";
export default (): AstroUserConfig => {
return {
integrations: [
img({
img: false,
}),
],
};
};
If your path is different than dist be sure to update it accordingly:
import type { AstroUserConfig } from "astro";
import img from "astro-img";
export default (): AstroUserConfig => {
return {
outDir: "./build",
integrations: [
img({
path: "./build",
}),
],
};
};
Set logger to 0 if you do not want to see debug messages. Default is 2.
import type { AstroUserConfig } from "astro";
import img from "astro-img";
export default (): AstroUserConfig => {
return {
integrations: [
img({
logger: 0,
}),
],
};
};
FAQs
🖼️ AstroJS image component.
The npm package astro-img receives a total of 0 weekly downloads. As such, astro-img popularity was classified as not popular.
We found that astro-img 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.