About Meteor
Hello there. This is my first blog post on meteor js. Meteor is an open-source platform for building web apps. It is a full stack javaScript platform built on top node.js. Meteor is easy to learn and yet powerful.Meteor uses JavaScript on both the client and on the server.
what is audit-argument-checks ?
It is a meteor package which throws an Meteor.Error when we are using client side data without validating it. ( Never trust a user input. right? ). Its job is to enforce security checks.
How to use audit-argument-checks ?
first add audit-argument-checks package to your project. Go to project dir and execute.
meteor add audit-argument-checks
simply pass values comes from client side and their data types in to check().
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Meteor.methods({ | |
DeleteUser: function(userId, userName) { | |
check(userId, String); | |
check(userName, Match.Any); | |
//rest of the code | |
} | |
}); |
Learn more on meteor security