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

editable-console

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

editable-console

editable-console is a runtime-agnostic logging utility that allows you to create and modify console output dynamically.

latest
Source
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

editable-console

editable-console is a runtime-agnostic logging utility that allows you to create and modify console output dynamically. It's available both as an npm package and as a jsr package.

Installation

npm

npm install editable-console

jsr (with Deno)

deno add jsr:@nassinger/editable-console

Usage

import { EditableConsole } from 'editable-console'; // or 'jsr:@nassinger/editable-console'

const console = new EditableConsole();

const loading = console.warn('loading...');
const greeting = console.log('hello');

setTimeout(() => {
    // removes the first log:
    loading.remove();

    // edits the second log:
    greeting.edit('hello world!');
}, 1000);

Documentation

for full documentation, visit editable-console docs.

License

MIT

FAQs

Package last updated on 28 Mar 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