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

pseudoroku

v1.2.4

Published

議事録をいい感じにレンダリングしてくれるツール

Downloads

4

Readme

PseudoRoku

議事録をいい感じにレンダリングしてくれるツール

npm

使用例

使い方

log_all.txt:

$DATE「2022年9月19日」
阿部「ところで、進捗ってどんな感じなんです?」
江藤「来月辺りにはリリースできそうとのことです」
$IMAGE「sample.jpg」
阿部「了解です。そういえば、先週あたりにこんな記事が出ていましたが、」
$URL「https://example.com/news/baz」
江藤「ああ、このニュースねぇ。」
$blockquote
```
foo
bar
baz
```
$HTML「ということで、この件はかなり<u>重要</u>になってくると考えているんだ」
鈴木「そうでしたか。ところで、」
$source
```c
#include <stdio.h>
int main(void) {
	return 0;
}
```
阿部「」
$VIDEO「video.mp4」
江藤「ところで、これお願いできます?」
$JOIN{阿部}{鈴木}「無理です」

censor_list.tsv:

阿部	Aさん
江藤	Eさん
鈴木	Sさん

profile_lookup.tsv:

Aさん	https://example.com/foo
Eさん	https://example.com/bar
Sさん	https://example.com/baz

template.html:

<!DOCTYPE html>
<head>
	<meta charset="utf-8">
	<title>ログ</title>
	$css
</head>
<body>
<h1>ログ</h1>
<h2>概要</h2>
<p>このログは、かくかくしかじかの経緯でどうこう。</p>
<h2>ログ本体</h2>$content</body>
import { PseudoRoku } from 'pseudoroku';
new PseudoRoku({
	input: "./log_all.txt",
	censor_list: "./censor_list.tsv",
	output: "docs/index.html",
	template: './template.html',
	profile_lookup: './profile_lookup.tsv',
	getIconPathFromCensoredName: name => `icons/${name}.png`, // 出力された HTML からの相対パスで指定
	getMediaPath: media => `media/${media}`, // 出力された HTML からの相対パスで指定
	hidePoweredBy: false, // true にするとこのリポジトリへのリンクを出力しなくなります
}).doEverything();

出力された docs/index.html と同じところに icons フォルダと media フォルダを作り、icons フォルダに Aさん.png, Eさん.png を用意し、 media フォルダに sample.jpgvideo.mp4 を用意することで、レンダリングされる。