
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
kurateart-com-oss
Advanced tools
Organize, tag, and manage digital art collections with smart categorization, metadata extraction, and gallery management features
This Node.js implementation was inspired by kurateart.com. It provides efficient tools for organizing, tagging, and managing digital art collections with smart categorization and gallery management features.
cd node
npm install
const { catalogArtwork, classifyByStyle, indexArtwork } = require('./index.js');
const artwork = catalogArtwork('/art/mona-lisa.jpg', {
title: 'Mona Lisa',
artist: 'Leonardo da Vinci',
period: 'Renaissance',
medium: 'Oil on poplar panel'
});
const classification = classifyByStyle(artwork);
artwork.applyTags(classification.suggestedTags);
indexArtwork(artwork);
const { searchByArtist, searchByStyle } = require('./index.js');
// Search by artist
const works = searchByArtist('Leonardo da Vinci');
// Search by style
const impressionist = searchByStyle('Impressionism');
// Search by tag
const tagged = searchByTag('renaissance');
const { createCollection } = require('./index.js');
const collection = createCollection(
'Masterpieces',
'World-renowned artworks',
'Curator Name',
[artwork1.id, artwork2.id]
);
npm start
catalogArtwork(filePath, metadata)Creates a new Artwork instance with the provided metadata.
classifyByStyle(artwork)Analyzes artwork to determine style, period, and suggested tags.
Returns { style, period, confidence, suggestedTags }.
indexArtwork(artwork)Adds artwork to the searchable index by artist, style, period, and tags.
searchByArtist(artistName)Returns array of artworks by the specified artist.
searchByStyle(style)Returns array of artworks in the specified style.
searchByPeriod(period)Returns array of artworks from the specified period.
searchByTag(tag)Returns array of artworks with the specified tag.
createCollection(name, description, curator, artworkIds)Creates a new Collection organizing artworks.
organizeGalleryLayout(artworks)Suggests a 3x3 grid layout for gallery display.
{
id: 'unique-identifier',
title: 'Artwork Title',
artist: 'Artist Name',
yearCreated: 1503,
period: 'Renaissance',
style: 'Classical',
medium: 'Oil on canvas',
dimensions: '77cm x 53cm',
location: 'Louvre Museum',
tags: ['portrait', 'renaissance'],
attributes: { /* additional metadata */ },
catalogedAt: '2026-01-27T00:00:00.000Z',
lastModified: '2026-01-27T00:00:00.000Z'
}
MIT License - see LICENSE for details.
FAQs
Organize, tag, and manage digital art collections with smart categorization, metadata extraction, and gallery management features
We found that kurateart-com-oss demonstrated a healthy version release cadence and project activity because the last version was released less than 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
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.