besic readme and add run script to package.json

This commit is contained in:
Sebastian Korotkiewicz 2022-03-27 05:13:56 +02:00
parent 7343093678
commit e0ded3f953
Signed by: grizzly
GPG Key ID: 5BDC557B496BDB0D
2 changed files with 15 additions and 0 deletions

12
README.md Normal file
View File

@ -0,0 +1,12 @@
# irc_bot
my tiny irc bot in nodejs
## install
```bash
$ git clone https://tildegit.org/grizzly/irc_bot.git
$ yarn install
$ nano index.js
$ yarn start
```

View File

@ -3,6 +3,9 @@
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"axios": "^0.26.1",
"better-sqlite3": "^7.5.0",