npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@flowdular/sdk

v0.4.3

Published

Flowdular platform SDK: server, client, UI, data, agents and core modules through separate exports.

Downloads

1,796

Readme

Flowdular: Build your business platform

Flowdular SDK

npm version Node.js License: MIT

The shared foundation for Flowdular applications: server APIs, client integration, UI components, databases, agents and bundled core modules. Build business modules against one SDK with explicit imports for each part of the platform.

Start a new application

Use Node.js 22.22.2 or newer. The generated workspace uses pnpm.

npm create flowdular@latest my-app
cd my-app
pnpm flowdular doctor

The generator configures the SDK and the Flowdular/Octane build toolchain. To add the SDK to an existing compatible workspace, install it in the package that imports it:

pnpm add @flowdular/sdk

Import what you need

// Server-side module code
import { defineEndpoint } from '@flowdular/sdk/server';
import type { ModuleManifest } from '@flowdular/sdk/contracts';
// Client-side module code
import { Button } from '@flowdular/sdk/ui';
import '@flowdular/sdk/ui/styles';

The SDK ships TypeScript and TSRX source for the Flowdular/Octane toolchain. It has no root import. Keep server and database imports in server code; use client and UI entrypoints in browser code.

What's included

| Area | Import paths | | --------------------------------------- | ---------------------------------------------------------------- | | Module contracts and runtime | @flowdular/sdk/contracts, @flowdular/sdk/kernel | | HTTP endpoints | @flowdular/sdk/server | | Client integration and translations | @flowdular/sdk/client, @flowdular/sdk/client/i18n | | Shared UI and styles | @flowdular/sdk/ui, @flowdular/sdk/ui/styles | | Database contracts and local PostgreSQL | @flowdular/sdk/database, @flowdular/sdk/database-pglite | | Database test helpers | @flowdular/sdk/database-testing | | Agents and providers | @flowdular/sdk/harness, @flowdular/sdk/ai-provider | | Development APIs | @flowdular/sdk/dev-console, @flowdular/sdk/cli-protocol | | Bundled core modules | @flowdular/sdk/modules/<name>, including modules/auth/server |

Business modules are distributed as source archives through Official Modules. Installing an archive and enabling a module are separate CLI actions.

The coding sandbox is a separate application distributed as @flowdular/sandbox. Launch it with npx @flowdular/sandbox from your application directory. It depends on the SDK; installing the SDK alone does not install the sandbox application or its launcher. The SDK's modules/sandbox export is the platform access/grant module, not the coding application.

Build a module

Use explicit permissions for endpoints, tenant-bound database access and the shared UI components. Run the generated workspace's checks before delivery:

pnpm verify

See the module guide, database adapters and design system.

Packages and support

Licensed under MIT. Repository documentation and source require repository access while the repositories are private.