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 🙏

© 2025 – Pkg Stats / Ryan Hefner

textlk-node

v1.0.1

Published

Official Text.lk SMS API client for Node.js and JavaScript-based apps

Readme

textlk-node

Official Text.lk SMS API client for Node.js and JavaScript-based apps. Send SMS messages easily with one function call — supports environment variable configuration or per-call overrides.


📦 Installation

npm install textlk-node

⚙️ Environment Variables (Optional)

Create a .env file or .env.local:

TEXTLK_API_TOKEN=your_api_token_here
TEXTLK_SENDER_ID=TextLKDemo

If these are set, you don’t need to pass them in every function call.


🚀 Usage

1️⃣ Using Env Variables

import { sendSMS } from 'textlk-node';

(async () => {
  try {
    const result = await sendSMS({
      phoneNumber: '94710000000',
      message: 'Hello from Text.lk using env variables!',
    });

    console.log('SMS Sent:', result);
  } catch (err) {
    console.error('Error sending SMS:', err);
  }
})();

The function automatically reads TEXTLK_API_TOKEN and TEXTLK_SENDER_ID from your environment.


2️⃣ Using Per-Call Overrides

import { sendSMS } from 'textlk-node';

(async () => {
  try {
    const result = await sendSMS({
      phoneNumber: '94710000000',
      message: 'Hello from Text.lk with per-call config!',
      apiToken: 'your_api_token_here',
      senderId: 'TextLKDemo'
    });

    console.log('SMS Sent:', result);
  } catch (err) {
    console.error('Error sending SMS:', err);
  }
})();

Useful when sending from multiple accounts or using different sender IDs.


3️⃣ Next.js Example (Server-Side API Route)

// pages/api/send-sms.js
import { sendSMS } from 'textlk-node';

export default async function handler(req, res) {
  if (req.method !== 'POST') return res.status(405).json({ error: 'Method not allowed' });

  try {
    const { phoneNumber, message } = req.body;
    const result = await sendSMS({ phoneNumber, message }); // Uses env variables
    res.status(200).json(result);
  } catch (err) {
    res.status(500).json({ error: err.message });
  }
}

✅ Features

  • Single async function call: sendSMS()
  • Works in Node.js v18+, Next.js, Express, and other JS frameworks
  • Supports env variable configuration or per-call overrides
  • Keeps API token secure (server-side only)
  • Minimal and dependency-free

⚠️ Security Note

Do NOT call this function from frontend/browser code — your API token will be exposed. Always call server-side.


📄 License

MIT License