1.1.0 • Published 5 months ago

stagify v1.1.0

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

stagify

Hey, there! Here is an open-source library for converting endpoint query string to MongoDB query working together with mongoose and express.js.

stagify

// input
{
    name: "sambath",
    sort: {
        createdAt: -1
    }
}
// output
[
    {
        '$match': { name: 'sambath' }
    },
    {
        '$sort': { createdAt: -1 }
    }
]

querify

// input
{
    name: "sambath",
    sort: {
        createdAt: -1
    }
}
// output
{
    filters: { name: 'sambath' },
    select: {},
    options: {
        skip: 0,
        limit: 25,
        sort: { createdAt: -1 }
    }
}
1.1.0

5 months ago

1.0.2

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.1

1 year ago

0.0.1

3 years ago

1.0.0

3 years ago