New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

typeview

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typeview

TypeScript package to create beautiful CLI-based presentations with minimal code. Effortlessly craft and display terminal slide decks for demos and talks.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

typeview

Build stunning, interactive slide decks directly in the terminal with TypeScript. typeview makes CLI presentations simple, elegant, and developer-friendly.

features

  • Create interactive CLI-based slide decks with minimal code
  • Beautiful formatting for terminal presentations
  • Designed for developers and quick demos
  • ESM-first, TypeScript-native APIs

requirements

  • Node.js (version X or higher)
  • TypeScript (version X or higher)

installation

pnpm add typeview

quick start

Create a simple deck with a single slide:

// src/demo.ts
import { TypeView } from "typeview";

const tv = new TypeView({ title: "TypeView Demo" });

tv.addSlide({
  title: "Hello",
  content: "Welcome to TypeView 👋",
});

await tv.run();

Run it (examples):

# using tsx (recommended)
pnpm tsx src/demo.ts

# or using ts-node
pnpm ts-node --esm src/demo.ts

This will give the following output:

https://github.com/m10rten/typeview/blob/main/examples/basic.png

contributing

Contributions are welcome! Please submit issues and pull requests.

license

This project is licensed under the MIT license. See the LICENSE file for details.

FAQs

Package last updated on 18 Sep 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