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

@futoshi-ahwatukee/akashic-clipboard-plugin

v1.0.0

Published

akashic plugin to access to clipboard data

Downloads

14

Readme

akashic-clipboard-plugin

akashic-clipboard-plugin はクライアントのクリップボード上のデータにアクセスするためのAkashic Engine用プラグインです。 ゆくゆくはクリップボードに格納したりとかMIMEタイプごとの挙動をしたりとかと多目的汎用的なプラグインにしていきたいではありますが、いまのところgetといったら入ってるものを渡すだけのシンプルなとってこい犬です。

動作

× コピー(格納)→できません 〇 ペースト(取得)→get()メソッドによって行います。ただし、ブラウザ動作同様となるうえユーザー許可に細かく対応していないため不可とされたらそれまでです。

動作環境: デバッグ(サンドボックス)では動いてました。実環境(生配信ゲームとして)はどうだかね。

使い方

  1. このプラグインを利用したいコンテンツのディレクトリ下で以下のようにコマンドを実行します。
akashic install --plugin 334 @futoshi-ahwatukee/akashic-clipboard-plugin

上記の例では --plugin に 334 を指定していますが、これは阪神タイガースには関係ありません。別の値にして構いません。

もしも上記コマンドの実行に失敗した場合は、コンテンツのディレクトリ下で以下のコマンド実行と コンテンツの game.json の手動での書き換えを行います。 ってか現バージョンって絶対エラー出ません?ダミースクリプトパスを指定して落ちるの回避してるらしいけどソイツがないってエラーは出続けてるんですけど…どうすりゃいいのコレ…

npm install --save-dev @futoshi-ahwatukee/akashic-clipboard-plugin
// 以下game.jsonの内容
{
	...,
+	"operationPlugins": [
+		{
+			"code": 334,
+			"script": "./node_modules/@futoshi-ahwatukee/akashic-clipboard-plugin/lib/index.js",
+		}
+	],
	"globalScripts": [
		...,
+		"node_modules/@futoshi-ahwatukee/akashic-clipboard-plugin/lib/index.js"
	],
	...
}
  1. get()メソッドで取得するだけです。サーバー側は関係ないだけでなく対象外となるためサーバー側を除外するif文はつけておいてください
	// 
    const plugin = g.game.operationPlugins[334];
    if (typeof plugin !== "undefined") {
        // operationTriggerにクリップボード取得(貼り付け)処理を追加記述してください。
        plugin.operationTrigger.add(clipText => {
            console.log(clipText);
        });
        // 取得する際にgetで呼びます(あまりにも作りがダサいのでこれは将来的に変えるかもです)
        button_clipboard.onPointDown.add(() => {
            plugin.get();
        });
    }