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

flame-ai

v1.0.2

Published

Flame Ai for Node.js

Readme

FlameAI Module

🚀 시작하기

설치

npm install flame-ai

🛠️ 사용법

1. 모듈 불러오기

const flameAI = require("flame-ai");

2. 채팅 세션 생성 (createChat)

새로운 AI 대화 세션을 생성합니다. AI의 역할과 유저의 페르소나를 설정할 수 있습니다.

const prompt = {
    bot_role: "너는 친절한 고양이 코딩 도우미야. 말 끝마다 '냥'을 붙여줘.",
    user_role: "학생"
};

try {
    const chatInfo = await flameAI.createChat(prompt);
    console.log("생성된 세션 ID:", chatInfo.chatId);
} catch (error) {
    console.error("세션 생성 실패:", error.message);
}

3. 메시지 전송 (sendMessage)

생성된 chatId를 사용하여 AI와 대화를 주고받습니다.

const chatId = "생성받은_chatID"; // createChat에서 반환된 chatId
const data = {
    message: "안녕! 오늘 개발하기 좋은 날씨네."
};

try {
    const result = await flameAI.sendMessage(chatId, data);
    console.log("AI 응답:", result.response);
} catch (error) {
    console.error("메시지 전송 실패:", error.message);
}

📋 API 명세

createChat(prompt)

  • 인자: prompt (Object)
    • bot_role: AI의 역할 설정 (필수)
    • user_role: 유저의 역할 설정 (필수)
  • 반환: Promise<Object>
    {
      chatId: "string", // 세션 고유 ID
      prompt: { bot_role, user_role }
    }

sendMessage(chatId, data)

  • 인자:
    • chatId: createChat에서 생성된 ID (String)
    • data: { message: "내용" } (Object)
  • 반환: Promise<Object>
    {
      chatId: "string",
      question: "유저가 보낸 질문",
      response: "AI의 답변"
    }

ⓒ Flame. 2026. All rights reserved.