Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
awesome-social-share
Advanced tools
An HTTP API for creating dynamic social share images using HTML + CSS. [`puppeteer-social-image`](https://github.com/chrisvxd/puppeteer-social-image) as a service.
An HTTP API for creating dynamic social share images using HTML + CSS. puppeteer-social-image
as a service.
This README is a proposal. No code has currently been written.
https://awesomesocialshare.com/image.png?template=basic&~title=Hello%20twitter%2C%20%40chrisvxd
Call awesomesocialshare.com/image.jpg with the query params
template
(string) Name of the templatesize
(string? Default twitter
) Size of the image (facebook
, twitter
, 400x400
).~*
(string) Template params, prefixed with ~, i.e. ~title
These query params are based on the puppeteer-social-image
API.
import { registerTemplate } from "awesome-social-share";
registerTemplate(API_KEY, SECRET_KEY, {
templateBody: "",
templateStyles: ""
});
On the client, we use domain whitelisting to verify the generation. The library will make a request to API to get generate the URL.
import awesomeSocialShare from "awesome-social-share";
const url = awesomeSocialShare(API_KEY, {
template: "basic",
templateParams: {
title: "Hello, World"
}
});
On the server, we use a secret to generate the URL without having to make an additional call to the API.
import awesomeSocialShare from "awesome-social-share";
const url = awesomeSocialShare(API_KEY, SECRET_KEY, {
template: "basic",
templateParams: {
title: "Hello, World"
}
});
The awesome-social-share
library for Node is a simple library that creates a URL by encrypting the payload in AES-256. The URL ends up looking like:
https://www.awesomesocialshare.com/image?apiKey=1ef2fesgv5sg4g54&data=awfsdgsdcvfgtrhgsefdgse
Here’s an example of the JavaScript code without the awesome-social-share
library, which should help you to implement it in other languages
const crypto = require("crypto");
const cipher = crypto.createCipher("aes256", SECRET_KEY);
const data = {
template: "basic",
templateParams: {
title: "Hello, World"
}
};
const dataEncrypted =
cipher.update(JSON.stringify(data), "utf8", "hex") + cipher.final("hex");
const url = `https://awesomesocialshare.com/image?apiKey=${awesomeApiKey}&data=${dataEncrypted}`;
MIT © Chris Villa
FAQs
An HTTP API for creating dynamic social share images using HTML + CSS. [`puppeteer-social-image`](https://github.com/chrisvxd/puppeteer-social-image) as a service.
The npm package awesome-social-share receives a total of 0 weekly downloads. As such, awesome-social-share popularity was classified as not popular.
We found that awesome-social-share 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.