An open API service indexing awesome lists of open source software.

https://github.com/1337programming/aibot

AI Bot Written in Node and C++
https://github.com/1337programming/aibot

Last synced: 8 months ago
JSON representation

AI Bot Written in Node and C++

Awesome Lists containing this project

README

          

# AIBot
AI Bot Written in Node and C++

## TODO

* Integrate node Object

## Debugging

If using Windows you can use visual studio otherwise for macs use the LLDB command line tool described below.

First, you need to do a debug build of your module.

`node-gyp build --debug`

Then `cd` to your project’s root. We need to know the absolute path to the node executable. Run:

`which node`

That will return the path to node.js. Now, run:

`lldb -- your/path/to/node {somefile.js}`

Adding breakpoints

`breakpoint set -f {somefile.cpp} -l 25`

Then start

`run`