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

@shizuoka-its/core

v1.1.0-alpha.0

Published

ITS core library

Downloads

306

Readme

@shizuoka-its/core

ITSで使用する共通のデータベースアクセス層とビジネスロジックを提供するライブラリです。

インストール

npm install @shizuoka-its/core

使い方

import { createClient } from "@shizuoka-its/core";

async function example() {
  // クライアントの作成(オプションあり)
  const client = createClient({
    prismaOptions: {
      log: ["query", "error"],
    },
  });

  try {
    const { services } = client;

    // メンバーの作成
    const member = await services.member.create({
      name: "山田太郎",
      studentId: "20240001",
      department: "情報工学科",
      email: "[email protected]",
    });

    // Discordアカウントの紐付け
    await services.discordAccount.create({
      id: "discord_user_id", // Discord IDをそのまま使用
      nickName: "Yamada Taro",
      memberId: member.id,
    });

    // イベントの作成
    const event = await services.event.create({
      name: "プログラミング勉強会",
      date: new Date("2024-12-01"),
    });

    // イベントへの参加登録
    await services.event.registerMember(event.id, member.id);
  } finally {
    // 必ずクリーンアップ
    await client.disconnect();
  }
}

機能

メンバー管理

  • メンバーの作成、更新、削除
  • メールアドレスによる検索
  • 学籍番号による検索
  • Discordアカウントの紐づけ

Discordアカウント管理

  • Discordアカウントの紐付け
  • メンバーごとのDiscordアカウント取得

イベント管理

  • イベントの作成、更新、削除
  • イベント参加者の管理
  • 今後のイベント一覧取得
  • 展示ごとのイベント一覧取得

展示管理

  • 展示の作成、更新、削除
  • イベントごとの展示一覧
  • 展示参加者の管理

ライトニングトーク管理

  • ライトニングトークの作成、更新、削除
  • イベントごとのライトニングトーク一覧

プロジェクト構成

src/
├── repositories/        # データベースアクセス層
│   ├── interfaces/     # リポジトリインターフェース
│   └── ...
├── services/           # ビジネスロジック層
│   ├── interfaces/     # サービスインターフェース
│   └── ...
└── index.ts           # エントリーポイント

開発セットアップ

  1. リポジトリのクローン
git clone https://github.com/su-its/core.git
cd core
  1. 依存関係のインストール
npm install
  1. 環境変数の設定
cp .env.example .env

.envファイルを編集してデータベース接続情報を設定

  1. データベースのマイグレーション
npx prisma migrate dev

データベースマイグレーション

詳細はマイグレーションガイドを参照してください。

コントリビューター

  • @KinjiKawaguchi
  • @KikyoNanakusa