
#Install postman install
#Install postman .exe
exe will appear at the bottom left of the browser. exe file, you will need to install the application. Since I am using the Chrome browser, the downloaded. Since I have got Windows 64-bit machine, I am going to install 圆4-Windows.ģ. Once you download the.
#Install postman software
A native application is like any software that you install like a game or IDM or any antivirus for instance. For example if you install an extension from chrome webstore then that application or extension will only run on chrome and no other browser. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,įITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.Download POSTMAN as a Standalone ApplicationĪ native application means the application will not be supportive of any particular application on an operating system. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR The above copyright notice and this permission notice shall be included inĪll copies or substantial portions of the Software. To use, copy, modify, merge, publish, distribute, sublicense, and/or sellĬopies of the Software, and to permit persons to whom the Software isįurnished to do so, subject to the following conditions: In the Software without restriction, including without limitation the rights Of this software and associated documentation files (the "Software"), to deal Permission is hereby granted, free of charge, to any person obtaining a copy Drop messages based on an array filter method.Drop messages older than a certain date.Or for more powerfull history management you can: To then subscribe to the messages you need to tell the Postman what you want to receive: postman.receive('some-message', function(), true) Īnd for better memory management you can kill history: postman.dropMessages('some-message')

If you want to send a message with Postman then you need to have them do a delivery: liver('some-message', ) Then in your Node app: var postman = require('postman')

Postman support Node.js as well, and you can get it through npm: npm install postman

If you want to use Postman in a website then you can grab the development or production (a whopping 1kb!) and include it. I decided to write Postman because I wanted a way which I could have a simple message bus in JavaScript so when I subscribed to messages I could get ones sent in the past. It also has no dependencies on external projects so you can drop in the unminified or the minified version and get cracking! Why? Postman does do pub/ sub, but it does it as a message bus, meaning that the order of handler subscription and message publishing isn't important.

Postman is a little JavaScript library (well it's actually Coffeescript but the Cakefile handles a build for me) which is similar to a traditional pub/ sub library, just a whole lot smarter.
