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

ng2-booking

v0.2.2

Published

A calendar component that can display events on a month, week or day view

Downloads

5

Readme

angular2 calendar

Build Status npm version devDependency Status GitHub issues GitHub stars GitHub license

Demo

https://strategiccoach.github.io/ng2-booking/demo/

Table of contents

About

A calendar component that can display events on a month, week or day view. The successor of: https://github.com/strategiccoach/angular-bootstrap-calendar

This is currently very much a WIP and won't be completed for several months. Community contributions are very welcome!

High level design goals:

  • Support everything the current angular1 calendar does with a near identical API
  • Authored in typescript
  • Ditch the bootstrap dependency - create a generic set of styles and then have optional themes that sit on top for bootstrap, material, ionic etc
  • Use flexbox because its 2016 and most browsers support this, and it can be polyfilled easily enough
  • Handle bigger amounts of events
  • Much improved week view
  • Remove the year view as it doesn't really add much value
  • Support rendering in a webworker / server side
  • Use only angular2 APIs for drag / drop and resizing rather than interact.js -> create separate modules for each of these
  • Extract business logic from the angular1 calendar into a separate module that can be shared between both calendars (the dist files will have it bundled though for an easier developer experience)

Prior art:

  • https://github.com/strategiccoach/angular-bootstrap-calendar
  • http://fullcalendar.io/
  • Apple calendar app

Installation

Install through npm:

npm install --save ng2-booking

Then use it in your app like so:

import {Component} from '@angular/core';
import {HelloWorld} from 'ng2-booking';

@Component({
  selector: 'demo-app',
  directives: [HelloWorld],
  template: '<hello-world></hello-world>'
})
export class DemoApp {}

You may also find it useful to view the demo source.

Usage without a module bundler

<script src="node_modules/ng2-booking/ng2-booking.js"></script>
<script>
    // everything is exported angular2Calendar namespace
</script>

Documentation

All documentation is auto-generated from the source via typedoc and can be viewed here: https://strategiccoach.github.io/ng2-booking/docs/

Development

Prepare your environment

  • Install Node.js and NPM (should come with)
  • Install local dev dependencies: npm install while current directory is this repo

Development server

Run npm start to start a development server on port 8000 with auto reload + tests.

Testing

Run npm test to run tests once or npm run test:watch to continually run tests.

Release

  • Bump the version in package.json (once the module hits 1.0 this will become automatic)
npm run release

License

MIT