🚀 DAY 4 OF LAUNCH WEEK:Introducing Socket Scanning for OpenVSX Extensions.Learn more →
Socket
Book a DemoInstallSign in
Socket

@raycast/hello-world

Package Overview
Dependencies
Maintainers
8
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@raycast/hello-world

A simple hello world package for Raycast extensions

latest
Source
npmnpm
Version
1.0.5
Version published
Weekly downloads
0
Maintainers
8
Weekly downloads
 
Created
Source

@raycast/hello-world

A simple hello world package for testing trusted publisher functionality.

Installation

npm install @raycast/hello-world

Usage

import { HelloWorld, greet } from "@raycast/hello-world";

// Simple greeting function
console.log(greet()); // "Hello, World!"
console.log(greet("Developer")); // "Hello, Developer!"

// Using the class
const helloWorld = new HelloWorld();
console.log(helloWorld.greet()); // "Hello, World!"

const customHello = new HelloWorld({ name: "Test User" });
console.log(customHello.greet()); // "Hello, Test User!"

API

greet(name?: string): string

Simple function that returns a greeting message.

HelloWorld class

  • Constructor: new HelloWorld(options?: { name?: string })
  • Method: greet(): string - Returns a greeting message

License

MIT

FAQs

Package last updated on 17 Oct 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