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

sikky

v1.1.4

Published

A ultimate TypeScript 2.0 boilerplate for node and the browser

Downloads

280

Readme

A ultimate TypeScript 2.0 Pre boilerplate for node and the browser

Build Status CircleCI Build status Coverage Status npm version npm downloads npm

A TypeScript 2.0 starter kit using all the latest technology, included the latest available TypeScript version - version 2.0 Pre (nightly build).

If this boilerplate are too complex,a and you need a super fast, and lightweight TypeScript boilerplate that export a single file, click here.

Features

  • [x] Statically typed build system for working with Typescript 2.0 Pre
  • [x] VSCode integration. Debug and run tests in the editor.
  • [x] Chrome dev tools integration with VSCode
  • [x] Consistent code style with TSLint.
  • [x] Intelligent code editing with VSCode
  • [x] Experimental support for ES7 decorators.
  • [x] Async/await and generators support for ES5/ES3
  • [x] Parallel Test Driven Development (TDD)
  • [x] All up-to-date TypeScript 2.0 features
  • [x] Code Coverage with Istanbul and Karma
  • [x] Hot Module Replacement with Webpack
  • [x] Async/await and generators support for ES5/ES3
  • [x] ES Modules (specs will change again).
  • [x] Allow dead code elimination for ES6 modules
  • [x] TSX / JSX
  • [x] Complete sourcemap support
  • [x] Environment variabels
  • [x] Browser tests in browser (port 8080)
  • [x] Babel as the ES2015 compiler for the testing stack
  • [x] Bublé as the ES2015 compiler
  • [x] Rollup for bundling
  • [x] Sinon for test doubles
  • [x] iOS and Android support
  • [x] React support
  • [x] Angular2 support
  • [x] Mocha & Chai de facto standard
  • [x] Easy debugging (parallell)

Quick start

The only development dependency of this project is Node.js. So just make sure you have it installed. Then type few commands known to every Node developer...

git clone --depth 1 https://github.com/kflash/sikky.git
cd sikky
# install the project's dependencies
npm install

# dev build
npm run build:dev
# prod build
npm run build:prod

... and boom! You have it all setup for you!

Workflow

  • npm start - runs a web server on localhost:3000 and updates on changes using HMR
  • npm run build - transpile down to ES5 and builds a bundle both for development and production
  • npm run build:dev - transpile down to ES5 and builds a bundle for development
  • npm run build:prod - transpile down to ES5 and builds a bundle for production
  • npm run build:finale - transpile down to ES5 and builds a bundle for production with Rollup and Bublé
  • npm run build:finale:prod - transpile down to ES5 and builds a bundle for production with Rollup and Bublé
  • npm run build:finale:prod - transpile down to ES5 and builds a bundle for production with Rollup and Bublé
  • npm run debug - debug task used with the VSCode editor.
  • npm run cleanup - remove the dist, coverage and build folders
  • npm run remove:build - remove the build folder
  • npm run remove:dist - removed the dist folder
  • npm run lint - validates everything
  • npm run lint:src - validates all source files
  • npm run lint:tests - validates all test files
  • npm run test - run tests both for browser and the node.js environment
  • npm run test:browser - run all unit tests in the browser
  • npm run test:node - run all unit tests in the node.js environment
  • npm run watch:browser - run all unit tests and watch files for changes in the browser.
  • npm run watch:build - watch your TypeScript files and trigger recompilation on changes.
  • npm run watch:node - run all unit tests and watch files for changes in the node.js environment.
  • npm run tdd - run all watch tasks in parallel and watch files for changes.
  • update:dependencies - update npm packages

Build workflow

Everything is done with Webpack. When you are satisfied and ready to ship the code to production, you can make a nice, clean output with Rollup.

npm run build:finale bundle the finale build files with Rollup, and make them ready for shipping. This files are put inside it's own folder dist-finale.

A finale build shaves off around 4 - 5 KB from the bundled source, compared to Webpack. Less bytes - more happy customers!!

Visual Studio Code

This workflow is tightly integrated with VSCode. In fact you can do everything from the editor.

Start the VSCode editor, and press Ctrl+Shift+B to compile the project. A build folder appers with the transpiled files in it.

To stop the compilation, press Ctrl+P → > Tasks: Terminate Running Task.

If you want to debug the source code, set a breakpoint on line 6 in /test/browser-tests/sikky.browser.js. Then press Cmd + D to view debugging options.

Select Debug Current TypeScript Test from the dropdown and press F5 to launch the debugger.

You should hit the breakpoint. Now you can press F11 to step into function, or press Shift+F5 to stop the debugger.

Note! Debugging may randomly return warning on build. See.

Unit tests can be run by pressin Cmd + T. You should see results displayed in the Output window.

Both browser and server tests are set up to run at the same time in parallel.

Custom Type Definitions

When including 3rd party modules you also need to include the type definition for the module if they don't provide one within the module. From TypeScript 2.0 both TDD and Typings are deprecated. All definitions are now installed through NPM packages.

npm install @types/<package name>`.

You can read more about it here

Test-driven development (TDD)

There exist one task for this - npm run tdd. This task runs all watch task in parallel.

Watch tasks

It's integrated a watch task for server and unit testing, and a task to keep an eye on your build process. This is tightly integrated with the debugger task included in the VSCode editor.

npm run watch:build starts the TypeScript 2.0 compiler in watch mode, and watch input files and trigger recompilation on changes. Dead code elimination for ES6 modules are activated by default, so later on you can use either Webpack 2.0 (early beta stage) or Rollup to perform tree shaking.

The watch task inform you if something is wrong with your code, and can come up with suggestions on how to solve current issue.

7:28:24 PM - File change detected. Starting incremental compilation...
src/universal/foo.ts(7,10): error TS2348: Value of type 'typeof TeaSpoon' is not callable.
Did you mean to include 'new'?

Continuous integration (CI)

Travis, Circle and Appveyor are the only supported CI. Travis is setup to work with Linux and OSX. Appveyor only runs in a Windows environment, but are configured to run on both the x86 and x64 platform.

You will need to change permissons on the .sh files used by Travis.

Code coverage

The library is set up to integrate with Coveralls.io, and are using Istanbul and Karma + Webpack to generate coverage report.

Coverage report for server tests will be included soon as I find it stable enough.

Server testing

Browser testing are done with mocha+chai+sinon. Debugging are enabled by default on port 5858.

All server related tests are located inside the test/node-tests folder, and named with a node extension. E.g. foo.node.ts.

JsDOM are used to fake DOM on the server.

Note! There is no need to manually import testing framework related packages such as Chai, Sinon etc. This have been done automatically.

Browser testing

Browser testing are done with Webpack together with Karma as the test runner.

All server related tests are located inside the test/browser-tests folder, and named with a node extension. E.g. foo.browser.ts.

Direct browser testing

The browser spec runner - ./config/runner.html - can be opened in a browser to run your tests. For it to work, you must first run npm run browser, and open port 8080 in your browser.

This will set up a watch task that will automatically refresh the tests when your scripts, or the tests, change.

Android and iOS

This boilerplate is tested against Travis CI configured to run Android with SDK version android-19 - 23. It's not tested with iOS. But the conlusion is that this works just fine.

Linting

This boilerplate uses TSLint to lint your source. To change the rules, edit the .tslint.json` file in the root directory, respectively.

FAQ

When should I consider using this boilerplate?

This library is ideal for libraries that export a single file.

Will this boilerplate always support the latest technology and specs on the market?

Yes. It will always be up-to-date.

What's the browser compatibility?

As a rule of thumb, TypeScript, Bublé and Babel works best in IE9 and above.

What's the cost of transpiling?

A thorough analysis of this question can be found here.