
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
fb-comments-web
Advanced tools
This package is the result of reverse analysis of embedding Facebook Comment Plugin (FCP) into my website. I was using `FCP` on my website [AnimeVsub](https://github.com/anime-vsub/desktop-web) and I realized that FCP uses too many resources. While the m
#fb-comments-web
This package is the result of reverse analysis of embedding Facebook Comment Plugin (FCP) into my website.
I was using FCP
on my website AnimeVsub and I realized that FCP uses too many resources. While the main thread is only using 32MB
of RAM, FCP
is using >200MB
of RAM which is unacceptable. And finally I decompiled FCP
to get its most core APIs and implemented it into an API
import { FBCommentPlugin } from "fb-comments-web"
const commentsPlugin = new FBCommentPlugin({
// config
})
interface FBCommentPluginConfig {
href: string
limit?: number
locale: string
order_by?: "time" | "reverse_time"
pluginUrl?: string
/** @description {string} url require starts with "https://" or "http://" */
app: string
sdk?: string
version?: string
fetch?: (
url: string,
options?: {
method: string
headers: Record<string, string>
body: URLSearchParams
}
) => Promise<string>
}
declare class FBCommentPlugin {
#private
static readonly default_config: Partial<FBCommentPluginConfig>
constructor(config: FBCommentPluginConfig)
private _setup
setup(): Promise<{
headers: {
"content-type": string
dpr: string
pragma: string
"sec-ch-prefers-color-scheme": string
"sec-ch-ua": string
"sec-ch-ua-full-version-list": string
"sec-ch-ua-mobile": string
"sec-ch-ua-platform": string
"sec-ch-ua-platform-version": string
"sec-gpc": string
"viewport-width": string
"x-asbd-id": string
"x-fb-lsd": string
Referer: string
"Referrer-Policy": string
}
targetID: string
app_id: string
limit: string
__a: string
__req: string
__hs: string
dpr: string
__ccg: string
__rev: string
__s: string
__hsi: string
__dyn: string
__csr: string
locale: string
lsd: string
jazoest: string
__sp: string
after_cursor: string
fb_dtsg: string
comments: DefaultComments
}>
getComments(after_cursor?: string): Promise<AsyncComments>
getMoreComments(
commentID: string,
after_cursor?: string
): Promise<AsyncComments>
postComment(text: string): Promise<PostComment>
replyComment(commentID: string, text: string): Promise<PostComment>
likeComment(commentID: string, isLike: boolean): Promise<PostComment>
editCommit(commentID: string, text: string): Promise<PostComment>
removeComment(commentID: string): Promise<RemoveComment>
}
FAQs
This package is the result of reverse analysis of embedding Facebook Comment Plugin (FCP) into my website. I was using `FCP` on my website [AnimeVsub](https://github.com/anime-vsub/desktop-web) and I realized that FCP uses too many resources. While the m
The npm package fb-comments-web receives a total of 10 weekly downloads. As such, fb-comments-web popularity was classified as not popular.
We found that fb-comments-web 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.