Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-easy-mongo-fixture

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-easy-mongo-fixture - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "grunt-easy-mongo-fixture",
"description": "Grunt task for easy-mongo-fixture plugin. It helps to you load and save you fixtures",
"version": "1.0.3",
"version": "1.0.4",
"homepage": "https://github.com/ivpusic/grunt-easy-mongo-fixture",

@@ -6,0 +6,0 @@ "author": {

@@ -21,2 +21,14 @@ # grunt-easy-mongo-fixture

# use case
Let we say that you have database with state which is pretty good to be fixture data. In that case you would like to 'freeze' database state and save it to file, and you want to be able to reset database state on that state each time when you want. `easy-mongo-fixture` will help you with that.
I am using something like this in my project:
```
grunt.registerTask('fixtures:load', ['easy_mongo_fixture:load', 'easy_postgresql_fixture:load']);
grunt.registerTask('fixtures:save', ['easy_mongo_fixture:save', 'easy_postgresql_fixture:save']);
```
So each time when I want reset databases state to some previous one I just need to run `grunt fixtures:load`, and if current database state is appropriate to be fixture seed, I can save current state with ``grunt fixtures:save`` command. After this command fixture files will be generated for you. Of course you can update generated fixture files by hand, and then run `grunt fixtures:load` command to populate data with newly added fixture records. Enjoy :)
## The "easy_mongo_fixture" task

@@ -23,0 +35,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc