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

flatsheet

v0.10.1

Published

a multi-user, realtime editor for tabular data

Downloads

19

Readme

flatsheet

A realtime editor for curating data as a team. flatsheet.io

Join the chat at https://gitter.im/flatsheet/flatsheet

Current status

This version of Flatsheet is an in-progress rewrite using Node.js. The first version of Flatsheet was a Ruby on Rails prototype.

Many aspects of the project are incomplete, but things are far enough along that it will be useful if you want to install it and experiment in a development environment.

Want to see an early demo of the real-time editor? Go here: http://flatsheet-realtime.herokuapp.com/

Todos:

Open issues represent current todo list: github.com/flatsheet/flatsheet/issues

Getting started

There are two ways to get flatsheet running:

Option 1: clone the flatsheet repository

Cloning the repo is best for testing things out & developing flatsheet, but works fine for other purposes. You just have to be prepared to manually pull & merge changes to your server.

Steps:

  • clone this repo: git clone [email protected]:flatsheet/flatsheet.git
  • change directory: cd flatsheet
  • run npm install
  • next you can follow the readme from here: https://github.com/flatsheet/flatsheet#create-an-admin-user

Option 2: use flatsheet as an npm dependency

This is a good option for when you're using flatsheet in production, because you can make use of npm to install and update flatsheet.

Steps:

  • Create a directory name flatsheet for your project (or whatever you like)
  • Change directory cd flatsheet
  • Create a package.json file with npm init
  • Install flatsheet with npm: npm install flatsheet --save
  • Install the response module: npm install response --save

File/folder setup

  • Create a folder named data: mkdir data
  • Create a app.js file with this code:
var server = require('flatsheet')({
  site: {
    title: 'flatsheet',
    email: '[email protected]',
    url: 'http://127.0.0.1:3333',
    contact: 'your full name'
  },
  db: __dirname + '/data'
});

server.listen();
  • Create a .env file for secret config like sendgrid username/password:
SENDGRID_USER=yourusername
SENDGRID_PASS=yourpassword
  • Add a flatsheet script and a start script to the scripts field in your package.json file:
"scripts": {
  "flatsheet": "flatsheet",
  "start": "node app.js"
},
  • So your full package.json file should look something like this:
{
  "name": "flatsheet-example",
  "version": "1.0.0",
  "description": "",
  "main": "app.js",
  "scripts": {
    "flatsheet": "flatsheet",
    "start": "node app.js"
  },
  "author": "",
  "license": "ISC"
}
  • next create an admin user:

Create an admin user

  • Create an admin account by running npm run flatsheet accounts create-admin. You'll be prompted for email, username, & password.
  • You can run npm run flatsheet accounts list to see that your admin account was created.

Start the server

  • Now run npm start to start the server.
  • In development you can watch the css & js using npm run watch.
  • In development you can debug runnig npm run-script debug. You add breakpoints in the code with debugger
  • Go to http://127.0.0.1:3333 and log in with the admin account credentials.

Create a sheet

  • Log in
  • Click the New blank sheet button
  • Fill out the name and description

Invite users

  • Navigate to http://127.0.0.1:3333/accounts/invite
  • Enter email addresses, one address per line
  • Click "Send invitation"
  • Users will receive an email with a link they can click to create accounts

Support

This project is supported in part by a code sprint grant from OpenNews.

More info at the Flatsheet blog.

License

MIT