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

create-outsystems-astro

v0.4.2

Published

Create an OutSystems Astro Island project to import as a component into your OutSystems application

Readme

OutSystems Astro Islands

Generates Astro Islands for use in OutSystems that can create self contained interactive code elements from different frameworks. It allows an extension of the front-end with these dynamic libraries.

When to use this library

  • Custom interactive elements that would be difficult/not possible to build directly in OutSystems.
  • Wrappers around interactive elements built in other front-end frameworks.
  • Direct migration of external traditional code.

When NOT to use this library

  • You will most likely not need to use this library for most of the front-end development. This is similar in use to the custom code development in for the back-end in O11 and ODC.
  • If the functionality is easily buidable in Service Studio.
  • Loading performance of component must be instant. The Astro Island will load after the page/screen has loaded since the initializer and tag will be loaded after.

Current supported frameworks

Getting started

Run the Create OutSystems Astro generator:

npm

npx create-outsystems-astro

Yarn

yarn create outsystems-astro

pnpm

pnpm dlx create-outsystems-astro

Bun

bunx create-outsystems-astro

Deno

The Deno DX command is available in Deno 2.6.

dx create-outsystems-astro

This will create the generated files as well as an example component.

View the full documentation.

🚀 Project Structure

/
├── public/
├── src/
│   └── components/
│       └── Counter.tsx
│   └── images/
│       └── image.png
│   └── pages/
│       └── counter.astro
│   └── styles/
│       └── index.css
└── package.json

Pages

Each page inside of the pages file should represent an Island that will be imported into OutSystems.

Components

The location of the component code.

Images

Any image assets.

Styles

Stylesheets that may apply to the component.

🧞 Commands

All commands are run from the root of the project, from a terminal:

npm

| Command | Action | | :------------------------ | :----------------------------------------------- | | npm install | Installs dependencies | | npm run dev | Starts local dev server at localhost:4321 | | npm run build | Build distribution to ./dist/ | | npm run output | Build OutSystems production site to ./output/ | | npm run preview | Preview build locally, before creating output | | npm run astro ... | Run CLI commands like astro add, astro check | | npm run astro -- --help | Get help using the Astro CLI |

Yarn

| Command | Action | | :------------------------ | :----------------------------------------------- | | yarn install | Installs dependencies | | yarn run dev | Starts local dev server at localhost:4321 | | yarn run build | Build distribution to ./dist/ | | yarn run output | Build OutSystems production site to ./output/ | | yarn run preview | Preview build locally, before creating output | | yarn run astro ... | Run CLI commands like astro add, astro check | | yarn run astro -- --help | Get help using the Astro CLI |

pnpm

| Command | Action | | :------------------------ | :----------------------------------------------- | | pnpm install | Installs dependencies | | pnpm run dev | Starts local dev server at localhost:4321 | | pnpm run build | Build distribution to ./dist/ | | pnpm run output | Build OutSystems production site to ./output/ | | pnpm run preview | Preview build locally, before creating output | | pnpm run astro ... | Run CLI commands like astro add, astro check | | pnpm run astro -- --help | Get help using the Astro CLI |

Bun

| Command | Action | | :------------------------ | :----------------------------------------------- | | bun install | Installs dependencies | | bun run dev | Starts local dev server at localhost:4321 | | bun run build | Build distribution to ./dist/ | | bun run output:bun | Build OutSystems production site to ./output/ | | bun run preview | Preview build locally, before creating output | | bun run astro ... | Run CLI commands like astro add, astro check | | bun run astro -- --help | Get help using the Astro CLI |

Deno

| Command | Action | | :------------------------ | :----------------------------------------------- | | deno install && deno run postinstall | Installs dependencies | | deno run dev | Starts local dev server at localhost:4321 | | deno run build | Build distribution to ./dist/ | | deno run output:deno | Build OutSystems production site to ./output/ | | deno run preview | Preview build locally, before creating output | | deno run astro ... | Run CLI commands like astro add, astro check | | deno run astro -- --help | Get help using the Astro CLI |

Getting Started

Delete the demo application under the src folder and being to build your own application.

Converting to OutSystems

Once development is complete, run the output generation command:

npm

npm run output

Yarn

yarn run output

pnpm

pnpm run output

Bun

bun run output:bun

Deno

deno run output:deno

This will create a set of files that will then need to be coverted to OutSystems components.