
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
@shyzoscorp-framework/api
Advanced tools
API for ShyzosCorp-Framework
npm install @shyzoscorp-framework/main
const api = require('@shyzoscorp-framework/api');
const api = require('@shyzoscorp-framework/api');
// getFrameworkVersion
console.log(api.frameworkVersion);
// getFrameworkAPIVersion
console.log(api.frameworkAPIVersion);
// Better logging system
api.log('Hello world!');
// Create a ASCII Table
const table = api.createAscii('your table name', 'heading name 1', 'heading name 2');
// Print ASCII Table
// With console.log()
console.log(table.toString());
// With api.log()
api.log(table.toString(), 'none'); // I added 'none' as second args to remove the date time at beginning to avoid the ascii table looking weird
// integrated ElevenLabsAPI
// Get ElevenLabs Voice with voiceId
// get your api key here: https://docs.elevenlabs.io/api-reference/quick-start/authentication
// you can see all voiceId through on their web api or feel free to use my api here two methods:
/*
Method 1: https://api.elevenlabs.io/v1/voices
Method 2: const getAllVoices = api.getElevenLabsAllVoices(apiKey).then(res => {
console.log(res);
})
*/
const apiKey = 'your-api-key', voiceId = 'any-voiceId-from-elevenlabs';
const getResponse = api.getElevenLabsVoice(apiKey, voiceId).then(res => {
console.log(res);
})
// Get ElevenLabs All Voices
const apiKey = 'your-api-key';
const getResponse = api.getElevenLabsVoice(apiKey).then(res => {
console.log(res);
})
// Get ElevenLabs Voice Settings
const apiKey = 'your-api-key', voiceId = 'any-voiceId-from-elevenlabs';
const getResponse = api.getElevenLabsVoiceSettings(apiKey, voiceId).then(res => {
console.log(res);
})
// Get ElevenLabs User Info
const apiKey = 'your-api-key';
const getResponse = api.getElevenLabsUser(apiKey).then(res => {
console.log(res);
})
// Get ElevenLabs TextToSpeech
const apiKey = 'your-api-key', voiceId = 'any-voiceId-from-elevenlabs';
const text = 'Hello';
// you can get your modelId through my api by using this method:
/*
const getModelIds = api.getElevenLabsAllModels(apiKey).then(res => {
console.log(res);
// or if you want only modelId then do this :
console.log(res[model_id]);
})
*/
const modelId = 'any-modelId-from-my-api';
const fileName = 'textToSpeech.mp3'; // The name of your audio file after converted with your text
const getResponse = api.getElevenLabsTextToSpeech(apiKey, voiceId, fileName, text, modelId).then(res => {
res.pipe(api.fs.createWriteStream(fileName)); // will create a mp3 file with your text you wanted to speech
})
// This Framework is currently under development stage
The project is released under the MIT license.
FAQs
API For ShyzosCorp-Framework
The npm package @shyzoscorp-framework/api receives a total of 3 weekly downloads. As such, @shyzoscorp-framework/api popularity was classified as not popular.
We found that @shyzoscorp-framework/api 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
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.