1.1.0 • Published 2 years ago

stagify v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years 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

2 years ago

1.0.2

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

0.0.1

4 years ago

1.0.0

4 years ago