bongo = require 'bongo-client'

bongo.connect 5000, (api)->

  {Shared, Account} = api

  new Shared
    title : 'test from another process'
    body  : 'little "b" bongo'
  .save()

  Shared.one (title: 'test from another process'), console.log
  
  Shared.one (title: 'test from "server" process'), console.log
  
  Account.one (username: 'devrim'), console.log