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

thikanaa

v0.1.17

Published

A beautiful, AI-powered chat popup component for React and Next.js applications

Downloads

1,794

Readme

Thikana

Thikana (meaning "Destination" or "Home" in Hindi) is a premium AI-powered portfolio assistant designed to provide an interactive way to explore details of your project. Built with modern web technologies, Thikana offers a seamless, conversational interface that acts as a digital twin for your app, answering questions about his experience, skills, and projects in real-time.

Live Working Example in Machine Code Website

Code Implementation

Please add a star once you visit the github repository would be very helpful.

✨ Features

  • Multi-Model AI Integration: Leverages the power of Groq (Llama 3.3, 3.1, Open AI, Groq) and Google Gemini (3 Flash, 2.5 Flash) via the Vercel AI SDK.
  • Intelligent Fallback Mechanism: If one AI model is unavailable or hits rate limits, the system automatically tries the next best model to ensure zero downtime.
  • Dynamic Context Injection: Responds accurately based on a comprehensive professional dataset (experience at Adeptmind, expertise in Go, Python, React, and more).
  • Modern UI/UX: Features a sleek, responsive chat interface with glassmorphism effects and smooth micro-animations.
  • Persistent Chat History: Remembers your conversation using local storage.

🛠️ Tech Stack

  • Frontend: Next.js (App Router), React 19, TypeScript
  • Styling: Vanilla CSS (Modern CSS variables, Flexbox/Grid)
  • AI Engine: Vercel AI SDK, Groq, Google Generative AI
  • Deployment: Optimized for Vercel

🚀 Getting Started

Prerequisites

  • Node.js (v18 or later)
  • Yarn or NPM
  • API Keys for Groq and/or Google Gemini

Installation

  1. Install dependencies:

    yarn add thikanaa 
  2. Run the development server:

    yarn dev
  3. Open the app: Navigate to http://localhost:3000 to see the application in action.

📦 NPM Package Usage

You can now use Thikana as an npm package in your own React/Next.js projects.

Installation

yarn add thikanaa

Usage

import { ChatPopup } from 'thikanaa';
import 'thikanaa/dist/index.css';


const App = () => {
  return (
    <div
      style={{
        position: "fixed",
        bottom: "20px",
        right: "20px",
        zIndex: 1000,
      }}
    >
      <ChatPopup 
        systemPrompt="Your custom system prompt here"
        feedData={"This is Raghu, a software engineer with 5 years of experience in building scalable and performant web applications. He is passionate about using the latest technologies to create innovative and user-friendly solutions."}
        assistantName="Thikana"
        apiUrl="/api/chatbot" // Your backend endpoint
        initialMessage="Hi this is Thikana! How can I help you today?"
        messages={[
          {
            role: 'user',
            content: 'All you list of messages',
          },
        ]}
        onMessageSend={(message) => {
          console.log(message);
        }}
        onMessageReceive={(message) => {
          console.log(message);
        }}
      />
    </div>
  );
};

Props

| Prop | Type | Description | | --- | --- | --- | | systemPrompt | string | Custom instructions for the AI model | | feedData | any | Base context data for the assistant | | apiUrl | string(Optional) | Endpoint to call for AI responses (default: /chatbot) | | assistantName | string | Name shown in the chat (default: Thikana) | | model | string | Specific model ID to use | | messages | Message[](Optional) | List of messages to display in the chat | | onMessageSend | function(Optional) | Callback function to handle message sending | | onMessageReceive | function(Optional) | Callback function to handle message receiving |


Dev by Malay Mishra