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 🙏

© 2026 – Pkg Stats / Ryan Hefner

angular5-spreadsheet

v0.0.7

Published

A simple spreadsheet module for Angular5. (NO requirement for jQuery!)

Readme

angular5-spreadsheet

A simple spreadsheet module for Angular5. (NO requirement for jQuery!)

Source codes can be find in src folder (sheet.component.ts/html/css)

Example Image

Live Demo

For live demo click here: https://emre-h.github.io/angular5-spreadsheet-demo/

Installation

You can import this library in any Angular application by running:

$ npm install angular5-spreadsheet

(It might give warnings.) And then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';

// Import the library
import { SheetModule } from 'angular5-spreadsheet';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify library as an import
    SheetModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Usage

Once library is imported, you can use its sheet component in your Angular application:

<ng-sheet></ng-sheet>

Or you can pass some values to adjust sheet:

<ng-sheet row="20" column="15" minWidth="70" minHeight="0"></ng-sheet>
  1. row value determines how many rows there will be in sheet (default: 20)
  2. column value determines how many columns there will be in sheet (default: 15)
  3. minWidth value determines cells' minimum and starting width (default: 70)
  4. minHeight value determines cells' minimum and starting height (default: 0)

Features

Mathematical Expressions

You can do calculations in cells by adding = before your expression, like this:

=5+3

And then simply pressing the enter key.

Also you can do things like this:

=sqrt(PI)

You can use cells' values by using their ids:

=B3-A7

Images

You can add images to cells by using [img][/img] tags:

[img]https://i.imgur.com/Nj41c7V.png[/img]

And then simply pressing the enter key. If you want to delete an image just click on it and press the backspace key.

Known Issues

  • It gets slower if you want to create big sheets like 100x100
  • Resizing and deleting images doesn't work on mobile
  • On Iphones, there is a shadow inside of cells

Working times for this project

  • 04/11/2017 ~(20:00-22:00)
  • 05/11/2017 ~(18:30-23:00)
  • Midterm exams (06/11/2017 - 17/11/2017)
  • Visit to hometown (Istanbul) (18/11/2017 - 20/11/2017)
  • 21/11/2017 ~(23:00-01:00)
  • 22/11/2017 ~(18:00-21:00)
  • 23/11/2017 ~(19:00-20:30)
  • Free day (24/11/2017)
  • Free day (25/11/2017)
  • 26/11/2017 ~(13:30-18:00)
  • 27/11/2017 ~(17:00-18:00)
  • Free day (28/11/2017)
  • 29/11/2017 ~(22:00-00:00)
  • ELECO Conference (30/11/2017 - 02/12/2017) & My birthday (01/12/2017)
  • 03/12/2017 ~(15:00-22:00)

License

MIT © Emre Horsanalı