![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
clipy-mate-core
Advanced tools
Access Clipy From Node.js
English | 日本語
Clipy is a Clipboard extension app for macOS. This package allow developers access Clipy's folders and snippets using Node.js.
It also provides TypeScript API and all tests are written by TypeScript.
[Attention] This package will access Clipy's Realm Database directly, so you may need to restart Clipy App if snippets updated.
Use the package manager npm to install.
npm i clipy-mate-core
const ClipyMate = require('clipy-mate-core');
const clipy = new ClipyMate();
import ClipyMate from 'clipy-mate-core'
const clipy: ClipyMate = new ClipyMate();
// Read all Folders and Snippets
clipy.readSnippets().then((folders) => {
console.log(folders);
console.log(folders[0].snippets);
});
// Parse `snippet.xml`
const fs = require('fs');
clipy.parseXml(fs.readFileSync('./snippet.xml')).then((folders) => {
console.log(folders);
console.log(folders[0].snippets);
});
// Create or Update a folder
// it will update a folder has same `identifier` field
// or create a new folder if `identifier` is blank or not found
clipy.upsertFolder({ title: 'test folder' }).then(folder => {
console.log(folder.identifier);
});
// Create or Update a snippet inside a folder
// it will update a snippet has same `identifier` field
// or create a new snippet if `identifier` is blank or not found
const folder = clipy.CPYFolder[0];
const folderId = folder.identifier;
clipy.upsertSnippet({ title: 'test snippet', content: 'test' }, folderId).then(snippet => {
console.log(snippet.identifier);
});
// Destroy a specific folder (All snippets in this folder will also be destroyed)
const folder = clipy.CPYFolder[0];
const folderId = folder.identifier;
clipy.destroyFolder(snippetId).then(folder => {
console.log(folder);
});
// Destroy a specific snippet
const snippet = clipy.CPYSnippet[0];
const snippetId = snippet.identifier;
clipy.destroySnippet(snippetId).then(snippet => {
console.log(snippet);
});
// [Danger!] Destroy all folders and snippets
clipy.clearAllSnippets().then();
// After all
clipy.disconnect();
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
FAQs
Core functions for Clipy Mate
The npm package clipy-mate-core receives a total of 6 weekly downloads. As such, clipy-mate-core popularity was classified as not popular.
We found that clipy-mate-core 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.