Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@macpaw/notion-cms-tools
Advanced tools
(ALPHA) It is an open-source pack of tools developed to create headless cms using Notion and Notion API.
Welcome to the notion-cms-tools wiki! (Alpha version, not recommended to use)
It's a simple javascript library that allows you to create headless cms for your website very fast. It is recommended to use in projects that require SSG or SSR usage. You can also extend capabilities of tools pack with additional modules (in work).
For now you can use additional image processors that process your images from notion page and serve them from CDN.
npm i @macpaw/notion-cms-tools@latest
and you are good to go
You should add these environment variables firstly.
NOTION_SECRET # your notion access token
DATABASE_ID # db id you want to access
###Code
import { getPages } from '../index.js';
import { parsePages } from '../parser/index.js';
import { getLoader } from '../image-loader/aws/index.js';
function getFilter() {
return {
property: 'Status',
select: {
equals: 'Published',
},
};
}
async function test() {
const data = await getPages(getFilter()); // loads db props data with filter
console.log('Data is loaded');
const parsedData = await parsePages(
// parsing page props
data,
{
properties: [
// validation params
'Title',
'Date',
'Topics',
'Where',
'Cost',
'Head Image',
'Applying link',
'Status',
'Colored Background',
'Grey Background',
'Pink Background',
],
},
{ imageLoader: await getLoader() } // loader setting (image/aws s3)
);
return parsedData;
}
console.log(await test());
Data is loaded
Size 73795d065fa338d1be7e1602a9508ad20f1183c12e0c36e8f0e6f2bd4fbb64e2:
original 152059
webp 51849
Size dcd203a6338cbfdb39829bc30204059c242ad5063af1cf84ed724ba00541126a:
original 389440
webp 210071
Validated!
[
{
id: '2f7ce682-a656-4836-96f1-646dc8930b76',
properties: {
coloredBackground: [Object],
headImage: [Object],
topics: [Object],
cost: [Object],
pinkBackground: [Object],
status: [Object],
greyBackground: [Object],
applyingLink: [Object],
where: [Object],
date: [Object],
title: [Object]
}
},
...
{
id: '487fdfc2-ae4a-457f-a421-486c3611c91b',
properties: {
coloredBackground: [Object],
headImage: [Object],
topics: [Object],
cost: [Object],
pinkBackground: [Object],
status: [Object],
greyBackground: [Object],
applyingLink: [Object],
where: [Object],
date: [Object],
title: [Object]
}
}
]
Our library release process is designed to ensure quality, consistency, and proper versioning. The process is broken down into multiple stages to ensure every change is tracked, reviewed, and integrated appropriately. We use changesets for version and release management.
Whenever you introduce a new change, run the command:
You have to do this at least once per branch with some changes.
npm run changes:add
chore: update changesets
.Steps to make a release:
release
branch.After a successful release, ensure you create a backmerge pull request from release to master
. This ensures that the master
branch stays up-to-date with the latest versions and changes.
FAQs
(ALPHA) It is an open-source pack of tools developed to create headless cms using Notion and Notion API.
The npm package @macpaw/notion-cms-tools receives a total of 4 weekly downloads. As such, @macpaw/notion-cms-tools popularity was classified as not popular.
We found that @macpaw/notion-cms-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.