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

wikinote

v0.7.6

Published

This project will no longer be maintained or supported. Please do not file issues or pull-requests against this repo. you can use [go version](https://github.com/bluemir/node-wikinote)

Downloads

5

Readme

[Deprecated] node-Wikinote

This project will no longer be maintained or supported. Please do not file issues or pull-requests against this repo. you can use go version

wiki-like contents manager system using markdown syntax

Join the chat at https://gitter.im/bluemir/wikinote GitHub tag GitHub license Sample

English, 한국어

Feature

  • simple text formatting syntax using markdown
  • real-time Collaborative editing
  • not using db, just using file system(edit with general text editor)
  • history management using "git"
  • authentication & authorization
  • easy to install & backup (just copy directory)

Install & Run

# using docker
docker run -d -p <port>:4000 -v <data directory>:/wikinote/data bluemir/wikinote


# using npm (require nodejs v4.x)
npm install -g wikinote
wikinote


# from source (require nodejs v4.x)
git clone https://github.com/bluemir/wikinote.git
cd wikinote
npm install
node wikinote.js

Syntax

WikiNote use marked as markdown parser and renderer. It also render GFM(Github Flavored Markdown). There are good document for those syntax and listing blow.

Plug-in

Plug-ins are available in WikiNote which can make easily. If you want more plug-in, you can make them. For now, there is no document for implement plug-in, but will be available soon. You can refer to example code before then.

There are default plug-ins can use just configure.

  • Reveal.js
  • Simple Comment
  • Disqus
  • remark

Contribute

If you want to participate this project, please visit Github repository. Feel free to submit pull request.

특징

  • markdown을 이용한 간략한 문법
  • 실시간 동시 편집 가능
  • DB를 사용하지 않고, 일반 파일로 저장(일반 텍스트에디터로 편집가능)
  • history관리(using git)
  • 인증 & 권한 관리
  • 손쉬운 설치/백업(폴더 복사만으로 백업 완료)

Install & Run

# using docker
docker run -d -p <port>:4000 -v <data directory>:/wikinote/data bluemir/wikinote


# using npm (require nodejs v4.x)
npm install -g wikinote
wikinote


# from source (require nodejs v4.x)
git clone https://github.com/bluemir/wikinote.git
cd wikinote
npm install
node wikinote.js

문법

WikiNote는 marked를 markdown parser와 renderer로 사용합니다. GFM(Github Flavored Markdown) 또한 지원합니다. 문법에 대해서는 아래 두 문서를 참고하면 좋습니다.

Plug-ins

wikinote는 Plugin을 쉽게 제작할수 있도록 되어 있습니다. 더 많은 기능을 Plugin을 통해 간편하게 만들수 있습니다. 아직은 plugin에 대한 문서가 없지만, 곧 문서화 할 예정입니다. 그 전까지 example code를 참조해서 만드실수 있습니다.

기본으로 제공되는 Plug-in

  • Reveal.js
  • Simple Comment
  • Disqus
  • remark

Contribute

만약 이 프로젝트에 새로운 기능을 제안하고 싶거나 버그를 알려주고 싶으시다면 Github repository로 알려주시면 됩니다. 물론 pull request도 환영합니다.