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

yawmi

v1.0.1

Published

> `This library was generated with Angular`

Readme

Yawmi Responsive

This library was generated with Angular

what is this!

Scheduler Calendar library for all applications that contain to book appointments in medical clinics, party or sports halls etc...

Appointment schedulers are business tools that allow clients choose an available date and time.

Image Scheduler Calendar

alt text

Image Scheduler Calendar Reserved

alt text

Installation

  1. npm i yawmi --save
  2. npm i moment --save

Importing...


Add to your app.module:

 import { YawmiModule } from 'yawmi';

And

 imports: [, YawmiModule, ...], ...

Then ...

How it Works

This Library contain @Input() and @Output() parameters

| Type | Name | Discription | | ---- | ---- | --- | @Input string | lang | The language of Calendar (fr, en, ...) | | @Input numbe | pas | Steps of the timing with (30min, 1hour or 20min) | | @Input string | msg | Message of date reserved ! | | @Input any[] | appointed | Tabe contain all days reserved (date 'YYYY-MMM-DDDD')| | @Input any{} | schedule | TimeTable conatin all timing for each day from when to ... | | @Output | weekDayEvent | Give date of day you choose it :muscle: | | @Output | timingEvent | Give time you choose it :muscle: |

Methods and Variables in app.component.ts

/* Variable get day value from getWeekDay(...) method */
weekDayVal: string; 

/* Variable get timing value from getTime(...) method */
timingVal: string; 

/* Push all date reserved here to this table */
reserve: any = []; 

for example :

reserve.push('2021-04-30') or

reserve.push(moment()) or

reserve.push(new Date())

/* 

TimeTable form 0 to 6 (Sunday to Saturday) 
each day can get horaire and must fill up manual like this or

push exp to Sunday (0) : `timeTable[0] = "0": ['8:30', '17:00']`

 */
timeTable: any = { 
                "1": ['8:00', '18:30'],
                "2": ['9:00', '18:30'],
                "3": ['10:00', '12:30'],
                "4": ['8:30', '17:30'],
                "5": ['8:30', '17:00'],
                "6": ['7:30', '17:30'],
                "0": ['8:30', '17:00'],
            };

Add this lines to your app.component.ts

export class AppComponent implements OnInit{

 weekDayVal: string;
 timingVal: string;
 reserve: any = [];
 timeTable: any = { 
 					"1": ['9:00', '18:30'],
			 		"2": ['9:00', '18:30'],
			 		"3": ['10:00', '12:30'],
			 		"4": ['8:30', '17:30'],
			 		"5": ['8:30', '17:00'],
			 		"6": ['7:30', '17:30'],
			 		"0": ['8:30', '17:00'],
			 	};

today: any = new Date();

 constructor(){}

 ngOnInit(){

 	this.reserve = [this.today, '2021-04-10'];

 }

 /* Method for get day value */
 getWeekDay(item: string){
 	this.weekDayVal = item;
 }

 /* Method for get time value */
 getTime(item: string){
 	this.timingVal = item;
 }

}

App.component.html

<yawmi-calendar 
	[lang]="'fr'"
	[pas]= 1
	[schedule]= "timeTable"
	[appointed]="reserve"
	[msg]="'Aucun créneau n\'est disponible'"
	(weekDayEvent)="getWeekDay($event)" 
	(getTime)="getTime($event)">
</yawmi-calendar>

Good day and thanks