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

@hypernova-sdk/core

v1.1.0

Published

A utility library for common Node.js tasks.

Downloads

144

Readme

Nova SDK for JavaScript

A utility library for common Node.js tasks.

Installation

npm install @risqiikhsani/novasdk

Or using yarn/pnpm:

yarn add @risqiikhsani/novasdk
pnpm add @risqiikhsani/novasdk

Quick Start

import novasdk from "@risqiikhsani/novasdk";

console.log(novasdk.__version__);

// Use the default logger
novasdk.print_success("Operation completed!");
novasdk.print_warning("This is a warning.");
novasdk.print_error("Something went wrong.");
novasdk.print_info("Here is some info.");

// Or use the logger directly
const { nova_log } = novasdk;
nova_log.success("Logged in successfully!");
nova_log.info("Server is running on port 3000.");

// Print a styled header
novasdk.print_header("Section Title");

// Print a table
novasdk.print_table(
  ["Name", "Age", "City"],
  [["Alice", "28", "NYC"], ["Bob", "34", "LA"]],
  "People"
);

// Print a tree structure
novasdk.print_tree("Project", "src/index.js", "README.md", "package.json");

// Progress bar
const bar = novasdk.progress("Downloading...", 100);
for (let i = 0; i <= 100; i++) {
  bar.update(i);
}
bar.stop();

// Status spinner
const spinner = novasdk.status("Loading data...");
setTimeout(() => spinner.stop(), 2000);

// Timer
const result = novasdk.timer(() => {
  // some work
  for (let i = 0; i < 1000000; i++) {}
  return "done";
});
console.log(result);

API Reference

Logger

import { NovaLogger } from "@risqiikhsani/novasdk";

const logger = new NovaLogger({ showTime: true, showLevel: true });
logger.success("Hello!");
logger.info("Server started");
logger.warning("Low memory");
logger.error("Connection failed");
logger.debug("Variable x = 5");
logger.plain("Raw text output");
logger.section("Important Section");

Functions

| Function | Description | |----------|-------------| | nova_log | Default shared logger instance | | print_success(msg) | Print a success message | | print_warning(msg) | Print a warning message | | print_error(msg) | Print an error message | | print_info(msg) | Print an info message | | print_header(title) | Print a styled section header | | print_table(headers, rows, title?) | Print a formatted table | | print_tree(label, ...children) | Print a tree structure | | progress(label, total?) | Create a progress bar | | status(message?) | Create a status spinner | | timer(fn) | Time a synchronous function | | timerAsync(fn) | Time an async function |

License

MIT License