2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/README.md

24 lines
412 B
Markdown
Raw Normal View History

2018-01-01 09:27:59 +00:00
# Frappe Core
Core libs for Frappe Framework JS
### Examples
const frappe = require('frappe-core);
# init database
frappe.init();
# make a new todo
let todo = frappe.get_doc({doctype: 'ToDo', subject: 'something'})
todo.insert()
# get all todos
let total_open = 0;
for (let d of frappe.get_all('ToDo')) {
todo = frappe.get_doc('ToDo', d.name);
if (todo.status == 'Open') total_open += 1;
}