npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

liferay-vue-utils

v0.0.6

Published

Parses a Liferay Page and returns all Vue Ids which have the data-portlet-type='vue' annotiation

Downloads

5

Readme

Idea

The idea behind this tool is that you can download a Liferay page with Vue portlets.
It prepares a Liferay page for webpack.

npx liferay-vue-utils

or

npx liferay-vue-utils liferay.vue.config.js

What does it?

It generates a public folder with the following content:

  • index.html (Indexpage for Webpack)
  • vueComponents.json (data all Vue calls)

How it works

It scans for the following attribute on a HTML-tag:

data-portlet-type="vue"
  1. If the script finds the attribute on a tag it copies the id and generates a json file.
  2. If the following script tag has a "Vue call" with the following structure, then the script also saves it.
  3. In the end it checks all script-tags removes all "Vue calls"

Vue calls get found the following way:

new Vue(
...
)

Development with Webpack (Recommended)

Why Webpack and not Liferay Blade Deploy?

There are some drawbacks with the Liferay development and Vue. When you use the webpack you work around this problems.

The mains advantages are:

  1. No caching
  2. Build needs 1 sec
  3. Hotreload (reloads the page when build is finished)
  4. Vue Devtools are working
  5. Good Errormessages

How to set it up

  1. create a liferay.vue.config.js in the root of the module.
  2. Add auth.token.check.enabled=false to the portal-ext.properties
  3. Configure your http to redirect to webpack

Example for liferay.vue.config.js

module.exports = {
  protocol: 'http',
  host: '[URL]',
  originPort: 80,
  port: 3000,
  loadInline: {
    selector: '[src*=\'example.js\']'
  },
  remove: {
    selector: '*[data-portlet-type="vue"] + script'
  }
}

How to update your index.html

npx liferay-vue-utils

or

npx liferay-vue-utils liferay.vue.config.js

Problems

I always get: Path must be a string. Received undefined -> Ignore it