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

evermark-fork

v0.9.4

Published

A command line tool for syncing markdown files to Evernote 🐘

Downloads

16

Readme

Evermark

NPM version Build Status Windows Build Status Coverage Status Dependency Status Dependency Status

A command line tool for syncing markdown notes to Evernote :elephant:

English 中文

Some features:

  • [x] Supports publishing markdown notes to evernote
  • [x] Supports unpublishing markdown notes from evernote
  • [x] Supports adding notebook and tags
  • [x] Supports code highlight, tables and inserting images
  • [x] Supports todo-list and LaTeX expressions
  • [x] Supports flow charts, sequence diagrams and gant diagrams

Build IT by OWN

if you want to publish it to npm by yourself,you should install below package. BTW,does npm has a build pom.xml or json like java maven to descript all packages that a project need in order to publish?

npm install rimraf -g
npm install babel -g
npm install babel-cli -g
npm install --save-dev babel-preset-latest
npm install --save-dev babel-preset-stage-0

Install

npm install -g evermark

Commands

Initialize Evermark Folder

Initialize Evermark folder, save settings to file evermark.json

evermark init <destination>
  1. First, follow the prompt to select whether you are using Evernote International or 印象笔记.
  2. Then login with your account from automatically opened page to generate developerToken and copy it.
  3. Finally, according to the prompt paste the copied developerToken.

The urls to generate developerToken:

View or Modify the Configuration

evermark config [name] [value]

Add Note

Create a empty markdown note in the notes directory of the Evermark folder.

evermark new <title>

Publish Notes

Publish markdown notes to Evernote or update the published notes.

evermark publish <file_or_directory>

Unpublish Notes

Delete the Evernote note which corresponding the markdown note, but the markdown note file will not be deleted.

evermark unpublish <file_or_directory>

View Help

evermark help [command]

The Supported Markdown Syntax

Headers

# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis

*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

~~This text will be crossed~~

_You **can** combine ~~them~~_

Sups & Subs

19^th^
H~2~O

Emoji

:smile: :heart: :sunny: :watermelon: :cn:

Links

http://github.com - automatic!
[GitHub](http://github.com)

Blockquotes

As Kanye West said:

> We're living the future so
> the present is our past.

Lists

Unordered

- Item 1
- Item 2
  - Item 2a
  - Item 2b

Ordered

1. Item 1
1. Item 2
1. Item 3
   - Item 3a
   - Item 3b

Task Lists

- [x] Write blog post with :heart:
- [x] Create sample **gist**
- [ ] Take screenshots for blog post

Tables

First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column

Images

![Image of Test](img/test.png "Image of Test")
![GitHub Logo](https://assets-cdn.github.com/images/modules/logos_page/Octocat.png "GitHub Logo")

Inline Code

This is an inline code: `var example = true`

Block Code

​```js
console.log('Hello world!')
​```

Diagrams

Evermark supports flow charts, sequence diagrams and gant diagrams by using mermaid. Please see the mermaid docs for more details.

Flow Diagrams

​```
graph LR
    A[Square Rect] -- Link text --> B((Circle))
    A --> C(Round Rect)
    B --> D{Rhombus}
    C --> D
​```

Sequence Diagrams

​```
sequenceDiagram
    participant Alice
    participant Bob
    Alice->>John: Hello John, how are you?
    loop Healthcheck
        John->>John: Fight against hypochondria
    end
    Note right of John: Rational thoughts<br/>prevail...
    John-->>Alice: Great!
    John->>Bob: How about you?
    Bob-->>John: Jolly good!
​```

Gantt Diagrams

​```
gantt
    title A Gantt Diagram

    section Section
    A task           :a1, 2014-01-01, 30d
    Another task     :after a1  , 20d

    section Another
    Task in sec      :2014-01-12, 12d
    anther task      : 24d
​```

Math Equations

Evermark supports LaTeX expression for math.

Inline Equations

When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ and they are
$x = {-b \pm \sqrt {b^2-4ac} \over 2a}$.

Block Equations

$$
\displaystyle \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} =
1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} {1+\frac{e^{-8\pi}} {1+\cdots} } } }
$$

$$
\displaystyle \left( \sum_{k=1}^n a_k b_k \right)^2 \leq
\left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)
$$

Raw HTML

<div style="color: red;">This is a <strong>html</strong> code.</div>

Other Syntax

Notebooks & Tags

Evermark add @(Notebook)[tag1|tag2|tag3] syntax to select notebook and set tags for the note.

Title

Evermark would use the first heading encountered as the note title.

License

MIT