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 🙏

© 2024 – Pkg Stats / Ryan Hefner

dum-project

v1.0.1

Published

A framework to create web servers, manage WebSocket connections, and integrate Telegram bots.

Downloads

2

Readme

DUM Framework

DUM Framework Welcome to the DUM Framework! This framework provides a simple way to create web servers, manage WebSocket connections, and integrate Telegram bots.

Добро пожаловать в DUM Framework! Этот фреймворк предоставляет простой способ создания веб-серверов, управления WebSocket-соединениями и интеграции Telegram-ботов.

Features / Особенности ° Web Server / Веб-сервер: Easily create and manage routes for your web application. Легко создавайте и управляйте маршрутами для вашего веб-приложения.

° WebSocket Server / WebSocket-сервер: Support for real-time communication using WebSockets. Поддержка реального времени с использованием WebSockets.

° Telegram Bot Integration / Интеграция Telegram-ботов: Simplified creation and management of Telegram bots. Упрощённое создание и управление Telegram-ботами.

° Automatic CSS Generation / Автоматическая генерация CSS: Dynamically generate CSS based on HTML class usage. Динамическая генерация CSS на основе использования классов HTML.

Getting Started / Начало работы Prerequisites / Требования ° Go 1.22 or higher / Go 1.22 или выше.

° Telegram Bot API token (create your bot via BotFather) Токен API Telegram-бота (создайте бота через BotFather)

Installation / Установка 1.Install the framework using npm:/Установите фреймворк с помощью npm:

npm install dum-project

Installation / Установка 1.Clone the repository: / Клонируйте репозиторий:

° git clone https://github.com/Fodi999/DUM.git

° cd dum-framework

2.Create a .env file in the root directory of your project and add your Telegram bot tokens: Создайте файл .env в корневом каталоге вашего проекта и добавьте токены вашего Telegram-бота:

TELEGRAM_BOT_TOKEN_1=your-telegram-bot-token-1 TELEGRAM_BOT_TOKEN_2=your-telegram-bot-token-2

3.Build and run the project: / Соберите и запустите проект:

go run .

Usage / Использование

The framework provides a command-line interface for managing your server and bots. Here are some of the available commands:
Фреймворк предоставляет интерфейс командной строки для управления вашим сервером и ботами. Вот некоторые из доступных команд:

° quit: Shut down the server. / Завершить работу сервера.

° reload: Reload the server. / Перезагрузить сервер.

° status: Check the status of the server. / Проверить статус сервера.

° create: Create a new HTML and JS file. / Создать новый HTML и JS файл.

° create_bot: Create a new Telegram bot. / Создать нового Telegram-бота.

° start_bot: Start the specified bots. / Запустить указанных ботов.

° list_bots: List all created bots. / Перечислить всех созданных ботов.

Example Commands / Примеры команд 1.Create a new bot / Создание нового бота:

Enter command: create_bot Enter bot name: bot1 Enter bot token: your-telegram-bot-token-1

2.Start bots / Запуск ботов:

Enter command: start_bot 1 2

3.List all bots / Перечисление всех ботов:

Project Structure / Структура проекта

° main.go: The main entry point for the server. / Основная точка входа для сервера.

° bot.go: Contains functions for managing Telegram bots. / Содержит функции для управления Telegram-ботами.

° handlers.go: Contains request handlers for web pages. / Содержит обработчики запросов для веб-страниц.

° router.go: Defines the router for managing HTTP routes. / Определяет маршрутизатор для управления HTTP-маршрутами.

° util: Utility functions for file creation and CSS generation. / Утилитные функции для создания файлов и генерации CSS.

° components: Contains the components for rendering HTML pages. / Содержит компоненты для рендеринга HTML-страниц.

° middlewares: Middleware functions for handling CORS and logging. / Функции промежуточного ПО для обработки CORS и логирования.

° websocket.go: Manages WebSocket connections. / Управляет WebSocket-соединениями.

Adding a New Bot to .env / Добавление нового бота в .env The handleCreateBot function in main.go will automatically add the bot's token to the .env file: Функция handleCreateBot в main.go автоматически добавит токен бота в файл .env:

func addBotToEnv(botName, botToken string) error { file, err := os.OpenFile(".env", os.O_APPEND|os.O_WRONLY, 0600) if (err != nil) { return fmt.Errorf("Ошибка при открытии файла .env: %v", err) } defer file.Close()

_, err = file.WriteString(fmt.Sprintf("TELEGRAM_BOT_TOKEN_%s=%s\n", strings.ToUpper(botName), botToken))
if (err != nil) {
    return fmt.Errorf("Ошибка при записи в файл .env: %v", err)
}

return nil

}

Contributing / Вклад

Contributions are welcome! Please open an issue or submit a pull request on GitHub. Вклады приветствуются! Пожалуйста, создайте issue или отправьте pull request на GitHub.

License / Лицензия

This project is licensed under the MIT License. Этот проект лицензирован на условиях лицензии MIT.

Contact / Контакты

gmail: [email protected]