
Company News
Socket Partners with Replit to Block Malicious Packages in AI-Powered Development
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.
@linear-webdev/react
Advanced tools
Learn more: docs.uploadthing.com
// Name is temp
import { UploadButton } from "@linear-webdev/react";
import type { FileRouter } from "./someUploadRouter";
export const SomePage = () => {
return (
<UploadButton<FileRouter>
endpoint="someTypesafeEndpoint"
onNewFileDropped={(file) => {
console.log("new file added by user", file);
}}
onClientStartedUpload={(file) => {
console.log("new file added by user", file);
}}
onClientFinishedUpload={(file) => {
console.log(file);
}}
/>
);
};
// Name is temp
import {
UploadFileView,
UploadProvider,
UploadZone,
} from "@linear-webdev/react";
import type { FileRouter } from "./someUploadRouter";
export const SomePage = () => {
return (
<UploadProvider<FileRouter>
endpoint="someTypesafeEndpoint"
onUpload={(file) => {
console.log(file);
}}
>
<div>Whatever You Want</div>
<UploadZone>
<div>Drop files here (you can style this yourself)</div>
</UploadZone>
<UploadFileView />
</UploadProvider>
);
};
FAQs
Learn more: [docs.uploadthing.com](https://docs.uploadthing.com)
The npm package @linear-webdev/react receives a total of 15 weekly downloads. As such, @linear-webdev/react popularity was classified as not popular.
We found that @linear-webdev/react 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.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.

Research
/Security News
Newer packages in this compromise use native extensions and .pth loaders to execute JavaScript stealers in developer environments.