Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
daily-glry
Advanced tools
Daily comic strip gallery with mobile/touch support.
Intended for daily comic strips and based on the current date. Specify a start date for the earliest comic, and browse through all strips up to current day.
Supports touch gestures (swipe & shake) and the following keyboard shortcuts:
◀ previous date ▶ next date R random comic T today's comic
daily-glry is based on glry, and requires Moment.js.
With npm:
$ npm install daily-glry --save
or bower:
$ bower install glry daily-glry moment --save
Include the libraries in your web page:
<script src="bower_components/moment/moment.js"></script>
<script src="bower_components/glry/glry.js"></script>
<script src="bower_components/glry/daily-glry.js"></script>
Place some basic HTML on your page:
<figure id="figure">
<div class="loading">LOADING</div>
<div class="error">STRIP MISSING</div>
<nav class="navigation">
<button class="prev">◀</button>
<button class="rand">Random</button>
<button class="next">▶</button>
<button class="today">Today</button>
<button class="share">Share</button>
</nav>
</figure>
Initialize the gallery with a minimal set of options like this:
var dailyGlry = new DailyGlry({
dateMin: [2014, 1, 22],
host: 'http://mycomic.com/archive/',
extension: '.png',
onOutOfRange: function () {
alert('No more comics until tomorrow.');
}
});
The only required option is host
which should be the base domain and folder of your comics. This will be used to load the daily comic file. The current year and date will be appended to host
like this:
http://mycomic.com/archive/2014/20140204.png
The available options and their defaults are as follows:
{
target: '#figure',
host: null,
hashFormat: 'YYYY-MM-DD',
nameFormat: 'YYYY/YYYYMMDD',
extension: '.png',
onOutOfRange: false
}
You can change the filename and hash format with nameFormat
/hashFormat
using the moment format syntax.
If a date outside the specified range is called, you can call custom logic by passing a function to onOutOfRange
.
All the options available in glry can also be used.
If you include the great plugin shake.js, shaking your device will load a random comic same as pressing R.
Just install the plugin and include it on the page:
$ bower install shake.js --save
<script src="bower_components/shake.js/shake.js"></script>
FAQs
Daily comic strip gallery with mobile/touch support.
The npm package daily-glry receives a total of 1 weekly downloads. As such, daily-glry popularity was classified as not popular.
We found that daily-glry demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.