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

rx-srv

v1.0.5

Published

A reactive service provider for Vue2

Downloads

3

Readme

rx-srv

A reactive service provider for Vue2

Install

yarn add rx-srv -D
yarn add reflect-metadata -D
yarn add typedi -D

Then you need to import 'reflect-metadata' at first

import 'reflect-metadata'

Usage

First, you should create a service

import RxService from 'rx-srv'
import {Service} from "typedi";

@Service()
class UserService extends RxService {

  public userName: string = 'Tom'
  public userAge: number = 18

  public userAddress = {
    province: 'AnHui',
    city: 'ChiZhou'
  }

  constructor() {
    super('UserService');
    super.observe()
  }

  public rename(name: string) { this.userName = name }
  public growUp() { this.userAge ++ }
  public updateProvince(province: string) { this.userAddress.province = province }
  public updateCity(city: string) { this.userAddress.city = city }

}

export default UserService

Then, you can export the service at a single export

import UserService from "@/service/user-service";
import {Container} from "typedi";


export const userService = Container.get(UserService)

Finally, use it at page

<template>
  <div id="app">
    User Info:
    <div>Name: {{userService.userName}}</div>
    <div>Age:  {{userService.userAge}}</div>
    <div>Addr: {{userService.userAddress.province}} - {{userService.userAddress.city}}</div>

    <div>
      <button @click="growUp">Grow Up</button>
    </div>
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import { userService } from "@/service";

@Component
export default class App extends Vue {
  public userService = userService

  public growUp() {
    this.userService.growUp()
  }
}

</script>
<style scoped>
#app {
   font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
</style>

That is all, please have fun with rx-srv

Version Change Log

V1.0.3

🎉 New Feature

  1. Support Watch API

Example:

@Service()
class UserService extends RxService {
  public userAge: number = 18

  constructor() {
    super();
    super.observe()
    
    this.watch(() => this.userAge, (val) => {
      console.warn('user age changed', val)
    })
  }
}

V1.0.4

🎉 New Feature

  1. Support Event Emitter

Example:

// emit an event
userService.next('logged', payload)

// listen an event
userService.on('logged', () => {
  // do something after logged
})

// cancel an event
userService.off('logged')

// emit an event only once
userService.once('logged', payload)

⚒ Bug Fix

  1. Fix lower vue version error