
Research
/Security News
CanisterWorm: npm Publisher Compromise Deploys Backdoor Across 29+ Packages
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.
@solidjs/start
Advanced tools
SolidStart brings fine-grained reactivity fullstack with full flexibility. Built with features like unified rendering and isomorphic code execution, SolidStart enables you to create highly performant and scalable web applications.
Explore the official documentation for detailed guides and examples.
Create a SolidStart template project with your preferred package manager
# using npm
npm create solid@latest -- -s
# using pnpm
pnpm create solid@latest -s
# using bun
bun create solid@latest --s
public/: Static assets like icons, images, and fontssrc/: Core application (aliased to ~/)
routes/: File-based routing for pages and APIsapp.tsx: Root component of your applicationentry-client.tsx: Handles client-side hydrationentry-server.tsx: Manages server-side request handlingapp.config.ts, package.json, and moreLearn more about routing
Configure adapters in app.config.ts to deploy to platforms like Vercel, Netlify, Cloudflare, and others
import { defineConfig } from "@solidjs/start/config";
export default defineConfig({
ssr: true, // false for client-side rendering only
server: { preset: "netlify" },
});
Presets also include runtimes like Node.js, Bun or Deno. For example, a preset like node-server enables hosting on your server.
Learn more about defineConfig
Generate production-ready bundles
npm run build # or pnpm build or bun build
After the build completes, you’ll be guided through deployment for your specific preset.
FAQs
Unknown package
The npm package @solidjs/start receives a total of 20,420 weekly downloads. As such, @solidjs/start popularity was classified as popular.
We found that @solidjs/start demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.

Research
/Security News
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.

Research
/Security News
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.