🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more
Socket
Book a DemoInstallSign in
Socket

@stenajs-webui/core

Package Overview
Dependencies
Maintainers
3
Versions
568
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stenajs-webui/core

The core library for @stenajs-webui.

latest
Source
npmnpm
Version
23.7.1
Version published
Weekly downloads
984
-30.11%
Maintainers
3
Weekly downloads
 
Created
Source

stenajs-webui/core

The core library for @stenajs-webui.

All other packages depend on core.

View components

Layout

Box is the main building stone which most other components are derived from.

  • Box

Components derived from Box

  • Column (same as Box, content is placed in a column)
  • Row (same as Box, content is placed in a row)
  • Indent
  • Space
  • Spacing

Interaction

Decorators

  • SeparatorLine

Hooks

core includes a collection of hooks. See src/hooks/README.md for details.

Comparators

There are a few comparators that can be used to sort arrays of objects.

  • byStringField
  • byNumberField
const r = users
  .filter((user) => user.age > 17)
  .toSorted(byStringField((i) => i.name))
  .toReversed()
  .map((p) => `${p.firstName} ${p.lastName}`)
  .join(", ");

FAQs

Package last updated on 17 Nov 2025

Did you know?

Socket

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.

Install

Related posts