
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
meddelare-express
Advanced tools
Node.js Express web server middleware for in-app, self-hosted Meddelare within your current server.
⚠️ The Meddelare Social Buttons project has been shut down as of 2020-12-07. No updates will be made and the source code will possibly be deleted in the future. Please download what you need as soon as possible.
Install custom social share counters on your website with your own hosted solution, which only makes a single API request and loads minimal or zero assets to display the counters.
Check out meddelare.com and view examples on meddelare.com/meddelare-examples.
Node.js Express web server middleware for in-app, self-hosted Meddelare within your current server.
Install package in your Express app folder
npm install --save meddelare-express
Add the MeddelareExpress to your Express app
var express = require("express"),
app = express(),
PORT = process.env.PORT || 5000;
var MeddelareExpress = require("meddelare-express"),
meddelareExpress = new MeddelareExpress();
// Choose your own directory path for the middleware.
app.use("/meddelare/", meddelareExpress.getRouter());
app.listen(PORT, function() {
console.log("Listening on " + PORT);
});
See this example API call. The response is delivered as JSON, or JSONP if you specify a callback.
{
"facebook": 5281,
"googleplus": 42,
"twitter": 8719
}
View examples on meddelare.com/meddelare-examples.
We would love to feature your widget design!
Please submit your design in a pull request to meddelare-examples and we will add it to our list.
You can do anything you want to display your share counts when using the API. Below is a very simple example showing the count per network -- see this example API call with text. Note that we are using a CloudFront distribution domain in the examples.
<!DOCTYPE html>
<html>
<body>
<h3>Twitter</h3>
<span id="twitter"></span>
<h3>Facebook</h3>
<span id="facebook"></span>
<h3>Google Plus</h3>
<span id="googleplus"></span>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script>
var url = "https://meddelare.com/";
var encoded = encodeURIComponent(url);
var networks = ["facebook" , "twitter" , "googleplus"];
$.ajax("https://d12cncu17l9pr5.cloudfront.net/?networks=" + networks.join(",") + "&url=" + encoded, {
success: function (res, err) {
$.each(res, function (network, value) {
$("#" + network).text(value);
});
}
});
</script>
</body>
</html>
Options are passed using query parameters in the url.
Networks
Currently Twitter, Facebook and Google Plus are supported.
Use the networks
query parameter to specify which ones you want to use as a comma-separated list (no spaces), for example networks=facebook,twitter,googleplus
or networks=facebook
.
Url (optional)
Use the url
parameter to specify the address which you want to retrieve the number of shares for, for example https://meddelare.com/
.
&
.https://meddelare.com/
becomes https%3A%2F%2Fmeddelare.com%2F
when using javascript: encodeURIComponent("https://meddelare.com/")
.If you don't specify a url
then the server will try to get the referring url's (HTTP Referer
header) share count. This makes it easy to dynamically get the counts for the page currently open in the browser.
Callback (optional)
Specify the callback
parameter to have the results delivered as JSONP instead of plain JSON.
Configure the middleware instance at creation time.
HTTP cache time
TODO httpCacheTime: 4 * 60
Router options
TODO (hidden feature)
routerOptions: {
caseSensitive: true,
strict: true,
},
Social button counts
TODO meddelareCounters: {}
Logger
TODO logger: {}
If you want to reduce your server load it would be wise to throw up a cache, such as CloudFront, in front.
In CloudFront, just make sure you to inherit cache control directives from the server, enable query string forwarding and whitelist Origin
HTTP headers. Either use your CloudFront distribution domain to access the API server or CNAME
it with a custom domain of your choice.
Many thanks goes out to Taskforce for their social-buttons-server (released into the Public Domain) -- especially the creator @thomasdavis and contributor @beaugunderson. This software, meddelare-node-express, is based on their work.
Copyright (c) 2015 Team Meddelare https://meddelare.com/ All rights reserved.
When using meddelare-node-express, comply to the MIT license.
FAQs
Node.js Express web server middleware for in-app, self-hosted Meddelare within your current server.
We found that meddelare-express demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.