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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@finarum/sip-phone-dial

v1.1.2

Published

A modern, high-quality SIP phone dialer component for Vue 3 applications. Built with JsSIP, Vuex, and Vite.

Downloads

323

Readme

@finarum/sip-phone-dial

A modern, high-quality SIP phone dialer component for Vue 3 applications. Built with JsSIP, Vuex, and Vite.

SIP Phone Dialer

Features

  • Vue 3 & TypeScript: Native support for modern Vue applications.
  • Glassmorphism Design: Premium, modern UI with smooth animations.
  • JsSIP Integration: Robust SIP handling for reliable VoIP calls.
  • Component-Based: Exported as reusable components (Phone, DialPad, etc.).
  • I18n Support: Ready for internationalization.

Installation

npm install @finarum/sip-phone-dial

Peer Dependencies

Ensure you have the following packages installed in your project:

npm install vue vuex jssip vue-i18n

Setup

1. Vuex Store Requirements

The component relies on a specific Vuex module structure. You should register the SIP module in your Vuex store.

import { createStore } from 'vuex';
// Note: You may need to export the store logic from the package if it's not internal only
// In the current version, the store logic is bundled.

2. Styles

Import the CSS in your main entry file:

import '@finarum/sip-phone-dial/dist/style.css';

Usage

Using the Phone Component

The Phone.vue component provides a complete SIP client UI.

<script setup>
import { Phone } from '@finarum/sip-phone-dial';
</script>

<template>
  <Phone 
    domain="your-sip-domain.com"
    ws_servers="wss://your-sip-wss-server.com"
    user="1001"
    password="your-password"
    displayName="John Doe"
  />
</template>

API Reference

Phone Props

| Prop | Type | Required | Default | Description | | :--- | :--- | :--- | :--- | :--- | | domain | String | Yes | - | Your SIP domain. | | ws_servers | String | Yes | - | WebSocket server URL (e.g., wss://...). | | user | String | Yes | - | SIP user extension. | | password | String | Yes | - | SIP password. | | displayName | String | No | "User" | Caller ID name. |

Development

If you want to contribute or modify the package:

# Install dependencies
npm install

# Start development server
npm run dev

# Build for production
npm run build

License

MIT