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

@deepakvishwakarma/node-claat

v0.2.0

Published

Go Lang claat tool replica in node js

Downloads

14

Readme

summary: How to use nodejs CodeLabs id: how-to-use-nodejs-codelab category: nodejs tags: medium status: Published authors: Deepak Feedback Link: https://github.com/deepakshrma/googles-codelabs

How to use nodejs CodeLabs Build Status

Overview

Duration: 2

What is nodejs CodeLabs

Go Lang claat tool replica written in node js, using marked parser

Documents: CodeLabs Docs

How to install

Duration: 2

You can either install as CLI or nodejs module

Install as CLI

npm install -g @deepakvishwakarma/node-claat

##OR

npm install -g git+ssh://[email protected]/deepakshrma/googles-codelabs.git

How to create codelab docs

Duration: 5

Create a folder[docs]

md codelabs
cd codelabs
md docs
cd docs

Create a md file

echo 'summary: This is going to be Awesome
id: this-going-to-be-awesome
category: doc
tags: medium
status: Published
authors: Deepak
Feedback Link: https://github.com/deepakshrma/googles-codelabs

## This is going to be Awesome

<!-- ------------------------ -->

## Overview

Duration: 1

### What is nodejs CodeLabs
```js
function isPageBreak(token) {
  return (
    token.type == "html" &&
    token.raw.indexOf("<!--") === 0 &&
    token.raw.includes("-->")
  );
}
```' > this-is-going-to-be-awesome.md

Run commandline

cd .. # move to home folder codelabs
ls # you will see docs folder here
node-claat --docs docs

How to contribute

Duration: 10

Prerequisite:

  • NodeJS 12.16.2 LTS or above
  • Basic knowledge of nodejs
  • ES2015 and above
git clone https://github.com/deepakshrma/googles-codelabs.git
npm install

npm run example
npm run serve

Write Test case and run:

Write test cases in test folder

npm run test:watch

## OR coverage

npm run test

Thanks For using

Duration: 1

Now you can run and see output using any static server

http-server

open browser:

open http://localhost:8080/this-is-going-to-be-awesome/#0

Thanks you for using! Work is still in progress. Keep supporting!

For more visit: CodeLabs