redbean node
1.0.0
RedBeanNode 是一個易於使用的 Node.js ORM工具,深受 RedBeanPHP 的啟發。
npm install redbean-node --save
文件:http://redbean-node.whatsticker.online
在瀏覽器中嘗試 RedBeanNode!
https://runkit.com/louislam/redbeannode-playground
這是在 RedBeanNode 中執行 CRUD 的方式:
const { R } = require ( "redbean-node" ) ;
// Setup connection
R . setup ( ) ;
( async ( ) => {
let post = R . dispense ( 'post' ) ;
post . text = 'Hello World' ;
// create or update
let id = await R . store ( post ) ;
// retrieve
post = await R . load ( 'post' , id ) ;
console . log ( post ) ;
// delete
await R . trash ( post ) ;
// close connection
await R . close ( ) ;
} ) ( ) ;
這會自動產生表和列...即時的。它根據命名約定推斷關係。
請在運行測試之前建置專案。
由 Vitaly Gorbachev 製作的圖標,來自 https://www.flaticon.com