We are working on a new API for cnatural, it's called BasicIO
and it's usage will be like:
```javascript
// alias:
let io = window.NaturalClient.API.BasicIO;
let con = window.NaturalClient.API.SoftConsole;
let chunkSize = 500; // Read 500B (bytes) per operation
let chunkPos = 0; // Position of the chunk in the file
io.ReadFile("/home/user/filename.txt", chunkPos, chunkSize, function(err, readed)
{
if(err)
throw err;... read more