npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@atlas.js/mongoose

v3.2.2

Published

Mongoose service for @atlas.js

Downloads

62

Readme

@atlas.js/mongoose

Mongoose service for @atlas.js.

Installation

npm i @atlas.js/mongoose

Usage

Service

The service configuration only accepts two properties: uri and options which are passed directly to the mongoose.connect(uri, options) method.

import * as mongoose from '@atlas.js/mongoose'
import { Atlas } from '@atlas.js/atlas'

const atlas = new Atlas({
  config: {
    services: {
      database: {
        uri: 'mongodb://127.0.0.1:27017/my-db',
        options: {},
      }
    }
  }
})

atlas.service('database', mongoose.Service)
await atlas.start()

// You have your mongoose client available here:
atlas.services.database

Accessing the Atlas instance

When you add your Schema definitions to the service they get access to the Atlas instance as both a static property on the model and as an instance property on all instances of those models.

const User = new Schema({
  /* your schema definitions go here */
})

User.statics = {
  doThisThing() {
    // this refers to User, in other words, this === mongoose.model('user')
    this.atlas
  }
}

User.methods = {
  doThatThing() {
    // this refers to an instance of User, in other words:
    // this instanceof mongoose.model('user') -> true
    this.atlas
  }
}

// From elsewhere in your codebase...
const User = atlas.services.database.model('user')
User.toThisThing()
const user = new User()
user.doThatThing()

ModelsHook

Dependencies

  • service:mongoose: A mongoose service to load the models into

You can use this hook to load your mongoose model definitions from a particular module location.

// models/user.js

// You can import the necessary classes and definitions directly from the
// @atlas.js/mongoose module instead of loading the mongoose lib
import { Schema, SchemaTypes } from '@atlas.js/mongoose'

const User = new Schema({
  name: SchemaTypes.String,
  email: SchemaTypes.String,
})

export default User


// models/index.js
import User from './user'
export {
  User
}

// index.js
import * as mongoose from '@atlas.js/mongoose'
import { Atlas } from '@atlas.js/atlas'

const atlas = new Atlas({
  root: __dirname,
  config: {
    hooks: {
      models: {
        // The path to the module from which all the database models should be
        // loaded, relative to atlas.root
        module: 'models'
      }
    }
  }
})

atlas.service('database', mongoose.Service)
atlas.hook('models', mongoose.ModelsHook, {
  aliases: {
    'service:mongoose': 'database',
  }
})
await atlas.start()

// Now your models from the models/index.js module are loaded up!
const User = atlas.services.database.model('User')

License

See the LICENSE file for information.