redbean node
1.0.0
RedBeanNode は、RedBeanPHP から強くインスピレーションを得た、Node.js 用の使いやすいORMツールです。
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 から作成したアイコン