Socket
Socket
Sign inDemoInstall

wonkajs

Package Overview
Dependencies
0
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.6.0 to 1.6.5

templates/manifest.appcache

14

package.json
{
"name": "wonkajs",
"version": "1.6.0",
"description": "Write javascript webapps right, easy and fast.",
"version": "1.6.5",
"description": "Wonka.js is a javascript client-side framework MVC like, built to enhance the frontend development, prioring team work and clean code.",
"homepage": "http://wonkajs.com",
"company": "Llorsat",
"keywords": ["framework", "frontend", "javascript", "MVT", "REST", "Web"],
"keywords": ["framework", "frontend", "javascript", "mvc", "webapp"],
"author": {

@@ -31,4 +31,8 @@ "name": "Julian Ceballos",

"name": "Christian Rodriguez",
"email": "crodriguez@llorsat.com.mx",
"email": "rcchristiane@gmail.com",
"url": "https://github.com/kalmecak"
}, {
"name": "Josue Aviles",
"email": "artu_ja@hotmail.com",
"url": "https://github.com/josuevera"
}],

@@ -53,3 +57,3 @@ "dependencies": {

},
"_id": "wonkajs@1.6.0",
"_id": "wonkajs@1.6.5",
"optionalDependencies": {},

@@ -56,0 +60,0 @@ "_engineSupported": true,

# Wonka.js
Write javascript webapps right, easy and fast.
Wonka.js is a javascript client-side framework MVC like, built to enhance the frontend development, prioring team work and clean code.

@@ -13,2 +13,4 @@ ## Install and configure

Also you'll need to install [git](http://git-scm.com).
### Install

@@ -22,2 +24,10 @@

At the end, verify that wonka has been installed successfuly:
```sh
$ wonkajs --version
```
This command must return the version number 1.6.0.
## Getting started

@@ -24,0 +34,0 @@

@@ -63,2 +63,7 @@ var fs = require('fs'),

var appcacheSource = path.join(projectDir, 'manifest.appcache');
var appcacheDest = path.join(projectDir, 'deploy', 'manifest.appcache');
utils.copy(appcacheSource, appcacheDest);
if(manifest.type == 'privileged' || manifest.type == 'certified') {

@@ -65,0 +70,0 @@ //TODO: Generate zip file for marketplace

@@ -12,3 +12,4 @@ var utils = require('../lib/utils.js'),

'icons': 'icons',
'index.hbs': 'index.hbs'
'index.hbs': 'index.hbs',
'manifest.appcache': 'manifest.appcache'
};

@@ -38,3 +39,3 @@

var projectDir = utils.mkdir(name);
var pkgPath = path.join(__dirname, '..', 'templates', 'package.template');
var pkgPath = path.join(__dirname, '..', 'templates', 'package.json');
var pkgTemplate = fs.readFileSync(pkgPath).toString();

@@ -41,0 +42,0 @@ var projectData = {

window.main = function() {
window.applicationCache.addEventListener('updateready', function(e) {
console.log('cache ready');
if (window.applicationCache.status == window.applicationCache.UPDATEREADY) {
window.applicationCache.swapCache();
window.location.reload();
}
}, false);
Backbone.emulateJSON = true;

@@ -3,0 +13,0 @@ Backbone.history.start();

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc