0.0.8 • Published 6 years ago

ssb-invites-schema v0.0.8

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

ssb-invites-schema

Validations for type invite and reply for ssb messages.

const { isInvite, isReply } = require('ssb-invites-schema')

// Get something from your database
server.get(key, (err, msg) => {
  const { content } = msg.value

  // Check if its an invite according to JSON schema
  if(isInvite(content)) {
    // ...
  }

  // Check if its an invite reply according to JSON schema
  if (isReply(content)) {
    // ...
  }
})
0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

1.0.3

6 years ago

1.0.0

6 years ago