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

lurk

v1.0.3

Published

Build web applications with C++

Downloads

2

Readme

Build your web app with C++

Installation

Assuming you have all the tools required to install and run lurk, the below should work.

npm install -g lurk

If the installation fails, the errors are quite useful. If you are lost, see hints for your OS below.

Usage

View Help

lurk --help

Generate a starter project

mkdir hello-lurk
cd hello-lurk
lurk init
lurk build
node out/common/src/main.js

Tools Used In Lurk

  • clang - clang compiler front end
  • python 2.x - must be installed and also aliased as python2
  • nodejs - use nvm to install multiple versions of nodejs. I reccomend using latest iojs version for support for ECMAScript 6 syntax
  • git - what every developer uses for revision control
  • make - a tool for doing huge compilation tasks
  • cmake - a tool for doing huge compilation tasks on multiple platforms

Ubuntu Installation Notes

You may experience some errors related to outdated software from deb packages. Installing using npm install -g lurk will let you know what is wrong if installation fails. If the system has installed latest clang, gcc, g++, cmake, make you'll be all set. Simply installing sudo apt-get instal build-essential usually doesn't give you the latest tools build tools

OSX Installation Notes

  • xcode - an OSX "bundle" or (.app) with all of the build tools inside (I think bundles are awesome)
  • one gotcha
    • python2 - one the tools lurk uses executes python2 to run a script in order to ensure python 2.x is being used. You can fix this with an alias or just using brew install python and that should add python2 to your path.

Windows Installation

I am not sure about all the requirements that are needed, but I had the below software installed on my machine and the tool ran successfully.

  • git - get the latest version
  • Visual C++ - get the latest free version
  • Install Node or iojs - https://nodejs.org/download/
  • Install Emscripten SDK - http://kripken.github.io/emscripten-site/docs/getting_started/downloads.html
  • Install CMake - install the windows version
  • Install GnuMake - install make for windows

Make sure to restart your computer after installing your tools on Windows. If that doesn't work the installation errors will tell you more about what is going wrong. I was able to install and use lurk using CMD, but not cygwin.

Contributing

Fork the repo and do or suggest something... You could make an issue, feature request, w/e is w/e I donno :) contact me on issues if you have an questions. Good luck and hope this tool finds you well. Stay tuned for more features and better documentation.