Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xzeldon/vk-bot-starter
A basic starter for an vk bot
https://github.com/xzeldon/vk-bot-starter
bot template vk vkontakte
Last synced: 6 days ago
JSON representation
A basic starter for an vk bot
- Host: GitHub
- URL: https://github.com/xzeldon/vk-bot-starter
- Owner: xzeldon
- License: mit
- Created: 2021-08-09T15:44:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-13T12:33:51.000Z (over 3 years ago)
- Last Synced: 2024-11-17T14:40:45.480Z (2 months ago)
- Topics: bot, template, vk, vkontakte
- Language: JavaScript
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vk bot starter
Includes utilities:
* [dotenv-safe](https://www.npmjs.com/package/dotenv-safe)
* Identical to [dotenv](https://www.npmjs.com/package/dotenv), but ensures that all necessary environment variables are defined after reading from .env. These needed variables are read from .env.example, which should be commited along with your project.
* [vk-io](https://www.npmjs.com/package/vk-io)
* This is a powerful Node.js module that allows you to easily interact with the API VK 🚀
* [@vk-io/hear](https://www.npmjs.com/package/@vk-io/hear)
* Simple implementation of the hears ⚙️Development utilities:
* [nodemon](https://www.npmjs.com/package/nodemon)
* ``nodemon`` is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected.
* [cross-env](https://www.npmjs.com/package/cross-env)
* ``cross-env`` makes it so you can have a single command without worrying about setting or using the environment variable properly for the platform. Just set it like you would if it's running on a POSIX system, and ``cross-env`` will take care of setting it properly.## Setup
```
npm install
```## Development
```
npm run dev
```