Categories
NodeJS

Use localForage in NuxtJS

You might found the module of nuxtjs such as: localforage-module or v-localforage but they are not up-to-date and it’s not working by default by using its module as example in this issue. Oh, and what is localForage here? It’s an offline storage for web, another option over the localStorage but it’s an API that let’s…

Categories
NodeJS

Offline Web App (PWA) – Reading

Offline Web App that could come with the server-side, we need to learn some technique. Of course, we can use JS LocalStorage but it’ll not enough or good enough to serve for some complex data/process, we need one that can access faster, thanks to “LocalForage” library that can be used like “Local Storage”. Somehow, I…

Categories
Java NodeJS

Execute NodeJS npm via maven pom.xml [Links]

It might be you are trying to search for “execute command npm.cmd windows via maven pom.xml”, likely you are from Java development environment that mostly love to do with maven. Here, following 3 articles would help, I don’t pick one to showup but there are some options available: 1. Building Frontend as a Part of…

Categories
General Java NodeJS

How to create maven bower grunt angularjs project

I just published an article on Webapp structure with maven, here I would like to add another structure with AngularJS project for my Quickstart series. The first procedure is the same for maven that you need to read the previous article. Install AngularJS Generator npm install -g generator-angular Generate AngularJS Webapp Structure yo angular Next,…

Categories
NodeJS

Grunt Serve – grunt-connect-proxy – Cannot read property ‘prototype’ of undefined

Starting grunt server via: grunt serve and got following error Loading "connect_proxy.js" tasks…ERROR >> TypeError: Cannot read property 'prototype' of undefined The issue seems already raised on grunt-connect-proxy module already and it has already fixed for the new version, if you still face the error above, please try following command to solve it: rm -rf…