KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
meteor-method-hooks
★ 26
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
brucezhaor.github.io
:
Bruce Zhao's Blog
stream-set
:
Maintain a set of open streams
LLMListView
:
super list view for uwp
AssetsPickerToUpLoad
:
媒体(文件)上传库 - 串行和并发 - IOS客户端 (带PHP脚本测试)
django-docker-compose
:
A production oriented dockerized django app
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
meteor-method-hooks
?
Download (.md)
# Meteor Method Hooks ## Before/after hooks for Meteor methods This package extends Meteor with four methods: * `Meteor.beforeMethod` * `Meteor.afterMethod` * `Meteor.beforeAllMethods` * `Meteor.afterAllMethods` This package differs from hitchcott:method-hooks in that: * You can add hooks for all methods * It works on both client and server * You can add and remove hooks at runtime. * After methods can change the methods result The `beforeMethod` method can be used for securing `Meteor.methods` based on the result of a definable function. Any `beforeMethod` that throws an error will stop the relevant method and any other hooks from executing. If you want to prevent further execution without triggering an error, you can just return 'false' from within your hook. Here's an example for checking user login: ```js Meteor.beforeMethod('test',function(){ if(!Meteor.userId()) throw new Meteor.Error(403,"Forbidden"); }) ``` You can also pass an array of method names as first parameter. Uses include: * Security * Logging * [insert imaginative idea] The before methods get the same arguments as the original method, The after method can get the current result from `this.result` or the error from `this.error` If it returns a value that is not undefined, then this will replace the original result. ## TODO * Testing ## Credits Inspired by: [Chris Hitchcott](https://github.com/hitchcott/meteor-method-hooks), 2015 Maintained until 2022 by [Seba Kerckhof](https://github.com/sebakerckhof) Maintained since 2022 by Meteor Community Packages