1.0.7 • Published 5 months ago

monguex v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

monguex

Biblioteca monguex utilitário das funções do mongoose NPM - https://www.npmjs.com/package/monguex

Instalação

Para instalar a biblioteca, utilize o seguinte comando:

npm install monguex

ou

yarn  add monguex
import  {monguex}  from 'monguex';



(async()=>{
  await monguex.connect("URL_MONGOOSE")

const userProps = {
  nome: String,
  idade: Number,
  email: String
};

const UserModel = monguex.createSchema('User',userProps,{timestamps:true})


await monguex.save(UserModel,{
    nome: 'John Doex',
    idade: 25,
    email: 'john.doex@example.com',
 })

})()
1.0.7

5 months ago

1.0.6

5 months ago

1.0.5

5 months ago

1.0.4

5 months ago

1.0.3

5 months ago

1.0.2

5 months ago

1.0.1

5 months ago