Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

insight-ui

bitpay288MIT0.4.0

An open-source frontend for the Insight API. The Insight API provides you with a convenient, powerful and simple way to query and broadcast data on the bitcoin network and build your own services with it.

insight, blockchain, blockexplorer, bitcoin, bitcore, front-end

readme

Insight UI

A Bitcoin blockchain explorer web application service for Bitcore Node using the Insight API.

Quick Start

Please see the guide at https://bitcore.io/guides/full-node for information about getting a block explorer running. This is only the front-end component of the block explorer, and is packaged together with all of the necessary components in Bitcore.

Getting Started

To manually install all of the necessary components, you can run these commands:

npm install -g bitcore-node
bitcore-node create mynode
cd mynode
bitcore-node install insight-api
bitcore-node install insight-ui
bitcore-node start

Open a web browser to http://localhost:3001/insight/

Development

To run Insight UI locally in development mode:

Install bower dependencies:

$ bower install

To compile and minify the web application's assets:

$ grunt compile

There is a convenient Gruntfile.js for automation during editing the code

$ grunt

Multilanguage support

Insight UI uses angular-gettext for multilanguage support.

To enable a text to be translated, add the translate directive to html tags. See more details here. Then, run:

grunt compile

This action will create a template.pot file in po/ folder. You can open it with some PO editor (Poedit). Read this guide to learn how to edit/update/import PO files from a generated POT file. PO file will be generated inside po/ folder.

If you make new changes, simply run grunt compile again to generate a new .pot template and the angular javascript js/translations.js. Then (if use Poedit), open .po file and choose update from POT File from Catalog menu.

Finally changes your default language from public/src/js/config

gettextCatalog.currentLanguage = 'es';

This line will take a look at any .po files inside **po/* folder, e.g. **po/es.po, po/nl.po. After any change do not forget to run grunt compile.

Note

For more details about the Insight API configuration and end-points, go to Insight API GitHub repository.

Contribute

Contributions and suggestions are welcomed at the Insight UI GitHub repository.

License

(The MIT License)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

changelog

Changelog

0.8.3 - 2014-12-08

  • amTimeAgo filter (#96, contributed by maxklenk)
  • Show formatted time as element title (#78, contributed by ctesene)
  • Support commonjs and browserify (#95, contributed by Pencroff)
  • SystemJS Loader support (#85, contributed by capaj)

0.8.2 - 2014-09-07

  • amMoment.changeLanguage() was deprecated in favor of amMoment.changeLocale() (following a change introduced in moment v2.8.1)
  • Bugfix: changing the locale emitted a deprecation warning (see #76 for details).

0.8.1 - 2014-09-01

  • Support moment.js v2.8.0. See here for changelog.
  • Support moment-timezone v0.2.1. See here for changelog.
  • Bugfix: updateTime() is called too often for future dates (#73)

0.8.0 - 2014-07-26

  • Generate source map for the minified version (#50)
  • Add support HTML <time> element - set the datetime attribute (#41, contributed by gsklee)
  • Add default format (angularMomentConfig.format config property) (#52, contributed by otang)
  • Add serverTime configuration option (#53, contributed by Facundo Pedrazzini)
  • Implement one-time binding for am-time-ago (#54, contributed by Ephi Gabay)
  • Support moment.js v2.7.0. See here for changelog.
  • Support moment-timezone v0.1.0. See here for changelog.

0.7.1 - 2014-05-16

  • bugfix: Preprocess set in configuration not used by filters (#49)

0.7.0 - 2014-04-19

  • Use moment as an injectable constant instead of relying on $window.moment (#35, contributed by just-boris)
  • Require.js support (#36)
  • Add am-preprocess attribute to support unix and utc timestamps (#38, contributed by jspaper)
  • NGDoc documentation (#40)
  • Enable support for AngularJS 1.3.x in bower.json
  • Support moment.js v2.6.0. See here for changelog.

0.6.2 - 2014-02-05

  • Add amMoment service with a changeLanguage() method (#32, contributed by Ornthalas)
  • bower.json: Move moment-timezone to devDependencies (fixes #34)

0.6.1 - 2014-01-31

  • Add optional timezone support to amCalendar and amDateFormat filters (#27, contributed by kayhadrin)
  • Happy Year of the Horse!

0.6.0 - 2013-12-24

  • Add optional am-without-suffix attribute to am-time-ago (#22, contributed by hramaker)
  • Support moment.js v2.5.0. See here for changelog.
  • Merry Christmas!

0.5.2 - 2013-11-17

  • Add amCalendar filter (#24, contributed by OndraM)

0.5.1 - 2013-11-09

0.5.0 - 2013-11-02

  • Use $window.setTimeout instead of $timeout, fixes protractor synchronization issue (#19)

0.4.2 - 2013-10-30

  • Add settings constant for configuring moment.js withoutSuffix-option (#18)

0.4.1 - 2013-10-27

  • Support moment.js v2.4.0. See here for changelog.

0.4.0 - 2013-10-08

  • Support moment.js v2.3.0. See here for possibly breaking changes.

0.3.0 - 2013-10-07

  • Bugfix: am-time-ago support for empty string (#15)
  • Behavior change: am-time-ago will only change the text once there is date

0.2.2 - 2013-09-29

  • Add support for passing unix timestamp as a string to amDateFormat filter (#14)

0.2.1 - 2013-09-13

  • Fix an issue with tests failing on a different timezone
  • Support moment 2.2.x, AngularJS 1.2

0.2.0 - 2013-08-22

  • Add optional am-format attribute to am-time-ago (#11)
  • Add new amDateFormat filter (#12)
  • Add changelog file

0.1.1 - 2013-06-08

0.1.0 - 2013-05-27

  • Initial release