Skip to content

Covetel/odoo-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

odoo JSON-RPC Client for NodeJS

Join the chat at https://gitter.im/Covetel/odoo-client

SYNOPSIS

var odoo = require('./lib/odoo.js');

var opts = {
    login: 'admin',
    password: '123321...',
    db: 'cooperativa-test',
    host: 'localhost',
    port: '8069'
}

// create the client
var client = new odoo(opts);

// auth
client.auth(callback);

// show databases
client.database_getlist(callback);

// get model

function callback (err,response){
    console.dir(response);
}

About

JSON-RPC Client for OpenERP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published