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

multiuser-meeting-scheduler

v0.3.1

Published

![GithubAction Test & Build](https://github.com/lim-it-ing/MultiUser-Meeting-Scheduler/actions/workflows/npm-publish.yml/badge.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Downloads

8

Readme

MultiUser-Meeting-Scheduler

GithubAction Test & Build License: MIT

Purpose

This web aims to arrange each other's schedule, by input of each user's schedule.

Try our web to reach arrangement of available time!

Sample App Image

Requirement

- MySQL
- Node

Usage

$ git clone https://github.com/lim-it-ing/MultiUser-Meeting-Scheduler.git

Go into the project directory and run the command:

localhost

$ nodemon index.js
or
$ node index.js

Open http://localhost:PORT and enjoy!

API

Before Run

Add this in config/database.js

module.exports = {
    host     : hostip,
    user     : user,
    password : password
    database : name_of_database
};

config/config.json

{
  "development": {
    "username": "root",
    "password": null,
    "database": "database_development",
    "host": "127.0.0.1",
    "dialect": "mysql",
      "port": 3306
  },
  "test": {
    "username": "root",
    "password": null,
    "database": "database_test",
    "host": "127.0.0.1",
    "dialect": "mysql",
      "port": 3306
  },
  "production": {
    "username": "root",
    "password": null,
    "database": "database_production",
    "host": "127.0.0.1",
    "dialect": "mysql",
      "port": 3306
  }
}

.env

SECRET_KEY = yoursecretkey
JWT_SECRET = yourjwtsecret

Database Structure

User

각 User의 개인정보를 저장합니다.

| | Type | | Comment | | --- | --- | --- | --- | | uid | string | primary | 유저 고유의 아이디 | | password | string(40) | unique | 유저의 이름 | | name | string | unique | 유저의 이메일 |

Schedule

시간표를 공유할 인원들이 속한 그룹 정보입니다.

| | Type | | Comment | | --- | --- | --- | --- | | id | int | auto_increment primary | | | name | String | Unique | | | sched_day | Date | | 날짜 | | uid | String | Foreign Key | 스케줄 유저 |

UserTimes

유저 일정의 시작 및 끝 시간을 정의합니다.

| | Type | | Comment | | --- | --- | --- | --- | | id | int | auto_increment | | | userid | int | | | | groupid | int | | | | startTime | hh:mm | | | | endTime | hh:mm | | |

UserSchedule

Linked Table Between User - Schedule

API Structure

Link : https://navy-sting-049.notion.site/APIs-7aa8d40df52b42b4baf65dcd07bd4f2e