Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Glimpse/Home
Project Glimpse: Node Edition - Spend less time debugging and more time developing.
https://github.com/Glimpse/Home
console diagnostics express glimpse http logging middleware nodejs performance profiling
Last synced: 24 days ago
JSON representation
Project Glimpse: Node Edition - Spend less time debugging and more time developing.
- Host: GitHub
- URL: https://github.com/Glimpse/Home
- Owner: Glimpse
- License: other
- Archived: true
- Created: 2016-08-30T15:18:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-08T17:06:39.000Z (over 7 years ago)
- Last Synced: 2024-04-14T12:46:52.896Z (8 months ago)
- Topics: console, diagnostics, express, glimpse, http, logging, middleware, nodejs, performance, profiling
- Homepage: http://node.getglimpse.com
- Size: 180 KB
- Stars: 252
- Watchers: 19
- Forks: 9
- Open Issues: 44
-
Metadata Files:
- Readme: readme.md
- Contributing: contributing.md
- License: license.md
Awesome Lists containing this project
README
[![npm (@glimpse/glimpse)](https://img.shields.io/npm/v/@glimpse/glimpse.svg)](https://www.npmjs.com/package/@glimpse/glimpse)
[![#ProjectGlimpse](https://img.shields.io/badge/tweet-%23ProjectGlimpse-blue.svg)](https://twitter.com/intent/tweet?hashtags=projectGlimpse&tw_p=tweetbutton)# Project Glimpse: Node Edition
[![Join the chat at https://gitter.im/Glimpse/Lobby](https://badges.gitter.im/Glimpse/Lobby.svg)](https://gitter.im/Glimpse/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Glimpse is an experimental **[npm package](https://www.npmjs.com/package/@glimpse/glimpse)** that gives you in-depth insights about the **client and server sides** of your **Node.js** apps. More **efficient debugging** means **faster development**. Best of all, it’s free.
![Project Glimpse: Node Edition Screenshot](/hero.png)
Full details and documentation available at [http://node.getglimpse.com](http://node.getglimpse.com).
## [Latest news](https://github.com/glimpse/Home/issues?utf8=%E2%9C%93&q=is%3Aissue%20label%3AAnnouncement%20)
- Mar 21, 2017 - It's all about services in 0.18.9. Find the details in our [announcement post](https://github.com/Glimpse/Home/issues/93).
- Feb 7, 2017 - Turn up the signal with 0.17.5. Read all about it in our [announcement post](https://github.com/Glimpse/Home/issues/86).
- Jan 6, 2017 - Happy New Year, we've released 0.16.4! Find out more in our [announcement post](https://github.com/Glimpse/Home/issues/85).
- Nov 22, 2016 - We've released 0.15.2, a minor update to last week's release. See our [announcement post](https://github.com/Glimpse/Home/issues/82) for more info.
- Nov 17, 2016 - We've released version 0.14.1! This is the biggest release of Glimpse for Node yet. Find out more in our [announcement issue](https://github.com/Glimpse/Home/issues/75).---
## Getting started
1. In your app's root directory, use npm to install Glimpse.
```bash
npm install @glimpse/glimpse --save-dev
```
2. Initialize Glimpse before any other `require()` or application logic (typically at the top of index.js or app.js).
```javascript
if (process.env.NODE_ENV !== 'production') {
require('@glimpse/glimpse').init();
}
```
3. Open your app in a browser. The Glimpse HUD should now be at the bottom right of your app.For more help, [check out the detailed steps and more ways to get started](http://node.getglimpse.com/docs/setup/getting-started/).
## Package & version support
See [here](http://node.getglimpse.com/docs/support/faq/#which-versions-and-modules-are-supported) for details on supported node runtimes and modules.## Issue reporting
If you run into any problems, please open a [new issue](https://github.com/aspnet/home/issues/new) in this repo. A member of the team will follow up with you ASAP.
---
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.