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

@brainspore/celadon-base

v2.0.1

Published

Student Portal Base Dashboard

Downloads

16

Readme

Celadon

Student Portal base dashboard

Installation

  1. Create a new vue cli project
vue create myproject
  1. Install and initialize vuetify Material Design Framework
vue add vuetify
  1. Install cardinal base dashboard to your project
npm i @kinetics254/cardinal-base
  1. Register plugin in your mani.js
import Vue from "vue";
import App from "./App.vue";
import cardinal from "@kinetics254/sirius-base";

const options = {
 store,
 router,
};

Vue.use(cardinal, options ); //options to auto add register store and routes

new Vue({
 router,
 store,
 vuetify,
 render: (h) => h(App),
}).$mount("#app");
  1. Set Environment Variables
VUE_APP_NAME='CARDINAL'
VUE_APP_VERSION='v0.0.1'
VUE_APP_URL='http://localhost:8080'
VUE_APP_API_BASE_URL='http://localhost:8000/api/v1/'
VUE_APP_SOCKET_URL='http://localhost:6001'
  1. Enable Babel Optional chaining feature
// vue.config.js
module.exports = {
    chainWebpack: config => {
        config.module
            .rule('vue')
            .use('vue-loader')
            .tap(options => {
                options.compiler = require('vue-template-babel-compiler')
                return options
            })
    }
}
  1. Start your server
npm run serve

Modules

1. Landing module on root (http://domain:port)
2. Auth module for 
    - Login (http://domain:port/auth)
    - password reset (http://domain:port/auth/forgot-password)
3. Dashboard module on (http://domain:port/dashboard)

Services

1. http (axios);
2. sockets (echo with socket io)

Plugins

1. Confirmation Modal
2. Loader

Utilities

1. Filters (Date, Currency, Number, String)
2. Helper (helper functions)

mixins

1. File mixin (base64 file handling)
2. Date mixin (formating dates)
3. Router mixin (scrumble route params)

Dependencies

"dependencies": {
    "epic-spinners": "^1.1.0",
    "file-type": "^16.5.3",
    "moment": "^2.29.1",
    "vue": "^2.6.11",
    "vue-router": "^3.2.0",
    "vuetify": "^2.4.0",
    "vuex": "^3.4.0",
    "axios": "^0.24.0",
    "lodash": "^4.17.21",
    "laravel-echo": "^1.11.3",
    "socket.io-client": "^2.4.0",
    "vue-template-babel-compiler": "^1.0.7",
    "vue-pdf": "^4.2.0"
  }

Authors

Michael - [email protected]

ヽ(•‿•)ノ Happy Coding!