
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@jcha0713/astro-notion
Advanced tools
Astro-Notion provides components to build static websites using Astro and lets you use Notion as your main CMS tool.
To install @jcha0713/astro-notion package, run the following command:
npm install @jcha0713/astro-notion @notionhq/client
or you can use yarn instead.
[notion.so](http://notion.so) and the slash and before the question mark(?).For more detailed work-through, see this tutorial provided by Notion.
.env and name it NOTION_API_KEY..env. Name it NOTION_DATABASE_ID.astro-imagetools package to display images. Here is an example config code you can copy and use it.// astro.config.mjs
import { defineConfig } from 'astro/config';
import { astroImageTools } from 'astro-imagetools';
// https://astro.build/config
export default defineConfig({
publicDir: './public',
outDir: './dist',
vite: {
plugins: [
{
name: 'import.meta.url-transformer',
transform: (code, id) => {
if (id.endsWith('.astro'))
return code.replace(/import.meta.url/g, `"${id}"`);
},
},
],
ssr: {
external: ['svgo'],
},
},
experimental: { integrations: true },
integrations: [astroImageTools],
});
// astro-imagetools.config.mjs
// create astro-imagetools.config.mjs
// in your project root folder
import { defineConfig } from 'astro-imagetools/config';
export default defineConfig({
fallbackFormat: 'png',
});
FAQs
Data fetching tool that connects Astro and Notion
The npm package @jcha0713/astro-notion receives a total of 1 weekly downloads. As such, @jcha0713/astro-notion popularity was classified as not popular.
We found that @jcha0713/astro-notion 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.