@sherbst/educr8-schemas

Mongoose schemas/models for Kit and StockItem.

Usage no npm install needed!

<script type="module">
  import sherbstEducr8Schemas from 'https://cdn.skypack.dev/@sherbst/educr8-schemas';
</script>

README

educr8 Schemas

Mongoose schemas/models for Kit and StockItem.


import { StockItem } from '@sherbst/educr8-schemas';

// Find all stockItems
StockItem.find({}, (err, stockItems) => {
    stockItems.forEach(item => {
        console.log(item);
    })
})