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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@epicdev/boost

v1.2.26

Published

Nuxt & Vuetify based management system

Readme

Boost

Boost is an open-source nuxt.js based framework designed to unify development of advanced web-systems.


Contribution

All contributions must be done on a fork of the highest x.x branch available. Any changes made to master will be rejected.

If you are an internal contributor then there is no need to fork. Make the changes directly on the highest x.x branch.


Installation

Prerequisites: You will need a new nuxt.js project already setup.

Node.js 12 is required

Run the following script to install:

npm install --save github.com:epicdev-za/boost

Change your nuxt.config.js file to match the following:

import nuxt_config from "boost/nuxt.config";
export default nuxt_config;

Create the following files in your projects root directory.

Create a server.config.js file using the following format:

const array_marriage = require("array-marriage");
const gravity_config = require("boost/server.config");

let config = {
    db: {
        database: '',
        host: '',
        user: '',
        password: ''
    },
    jwt: {
        secret: ''
    },
    sanctum: {
        project_key: ''
    },
    endpoints: {} //Refer to Documentation to setup endpoints
};

module.exports = array_marriage(gravity_config, config);

Create a boost.config.js file using the following format:

const array_marriage = require("array-marriage");
const boost_config = require("boost/boost.config");

const config = {
    projectName: "",
    nuxt: {
        head: {
            title: ""
        }
    },
    modules: {}, //Refer to Documentation to setup modules
    module_groups: {} //Refer to Documentation to setup module_groups
};

export default array_marriage(boost_config.default, config);

Create a boost.routes.js file using the following format:

import path from 'path'
const array_marriage = require("array-marriage");
const boost_routes = require("boost/boost.routes");

const resolve = function(vue){
    return path.join(__dirname, vue);
};

const routes = { //Refer to Documentation to setup routes
    '/': {
        name: 'Home',
        component: resolve('./pages/index');
    }
};

export default array_marriage(boost_routes.default, routes);

Lastly delete the layouts & middleware directory as these are handled by boost.


Documentation

Front-end Routes
  1. Create your Vue page components inside preferrably the pages directory.
  2. Add the following to the boost.routes.js file inside the routes const.
'/your/url/structure': {
    name: 'Page Name',
    component: resolve('./path/to/page/component'),
    permissions: ['any.permissions.needed'] //This is optional
}
Loading custom modules onto the dashboard
  1. Create your landing page url with its necessary permissions.
  2. Add the following to the boost.config.js file inside the modules key.
'module_uri': {
    title: "Module Title",
    description: "Short description on what module is for",
    icon: "mdi-icon",
    to_prefix: "/admin",
    tag: "beta/in dev/etc", //Optional
    tag_color: "#000000", //Can use vuetify color library by importing it
    create_btn: false //If you want a quick-link to the create page
}

Modules can also be grouped by configuring the module_groups as follows:

'Your Module Group Name':{
    title: "Your Module Group Name",
    modules: [
        'module_uri_1',
        'module_uri_2',
        'module_uri_3'
    ]
}
Creating back-end endpoints

To create a back-end endpoint available on the /api prefix. Configure the server.config.js file as follows:

...
endpoints: {
    'dir1': {
        children: {
            'dir2': {
                children: {
                    'endpoint1': { //Url will equate to /api/dir1/dir2/endpoint1
                        method: "get",
                        handler: require("./api/endpoints/your_file/etc")
                    }
                }
            }
        }
    },
    'endpoint2': { //Url will equate to /api/endpoint2
        method: "post",
        handler: require("./api/endpoints/your_file/etc")
    },
    'endpoint3': { //An endpoint can have multiple HTTP methods by configuring it like so
        methods: [
            {
                method: "get",
                handler: require("./api/endpoints/multimethod/get")
            },
            {
                method: "post",
                handler: require("./api/endpoints/multimethod/post")
            }
        ]
    }
}
...

Support Disclaimer

This library is intended for internal use at Epicdev. It has been made open-source to avoid "proprietary" conflicts with clients wanting their projects source code. We offer no support to anyone who is not an Epicdev Developer.