Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Apr 22, 2018
1 parent ac48928 commit a15e72f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,24 @@
<br>
</h1>


![Last version](https://img.shields.io/github/tag/Kikobeats/svr.svg?style=flat-square)
[![Build Status](https://img.shields.io/travis/Kikobeats/svr/master.svg?style=flat-square)](https://travis-ci.org/Kikobeats/svr)
[![Dependency status](https://img.shields.io/david/Kikobeats/svr.svg?style=flat-square)](https://david-dm.org/Kikobeats/svr)
[![Dev Dependencies Status](https://img.shields.io/david/dev/Kikobeats/svr.svg?style=flat-square)](https://david-dm.org/Kikobeats/svr#info=devDependencies)
[![NPM Status](https://img.shields.io/npm/dm/svr.svg?style=flat-square)](https://www.npmjs.org/package/svr)
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/Kikobeats)

> Hot Module replacement (HMR) capabilities for any HTTP Server.
> Development HTTP server done right
The idea behind this project is **smart reload**, avoiding reload completely the process. It just reload the code that changes!
## Features

It's similar [micro-dev](https://github.com/zeit/micro-dev), but out of the box for any framework that use [http.Server.listen()](https://nodejs.org/api/http.html#http_server_listen_port_hostname_backlog_callback) interface.
- **Hot Reloading**: Automagically reload modified files, not the process.
- **Pretty Errors**: They will be beautifully rendered.
- **Port Selection**: Automatic detection and use of an open port (if the specified one is in use).

## Features
The idea behind this project is **smart reload**, avoiding reload completely the process. It just reload the code that changes!

- Automagically reload modified files (not the entire process as nodemon, so it makes it significantly faster).
- Auto detection of files to ignore (based on .gitignore et all)
- Pretty error format for bring the best development experience.
It's similar [micro-dev](https://github.com/zeit/micro-dev), but out of the box for any framework that use [http.Server.listen()](https://nodejs.org/api/http.html#http_server_listen_port_hostname_backlog_callback) interface.

## Installation

Expand Down
18 changes: 9 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,30 @@
<meta http-equiv="x-ua-compatible" content="ie=edge">

<!-- Search Engine -->
<meta name="description" content="svr, Hot Module replacement (HMR) capabilities for any HTTP Server.">
<meta name="description" content="svr, development HTTP server done right">
<meta name="image" content="https://svr.js.org/demo.gif">
<link rel="canonical" href="https://svr.js.org" />
<title>svr, Hot Module replacement (HMR) capabilities for any HTTP Server.</title>
<title>svr, development HTTP server done right</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">

<!-- Schema.org for Google -->
<meta itemprop="name" content="svr, Hot Module replacement (HMR) capabilities for any HTTP Server.">
<meta itemprop="description" content="svr, Hot Module replacement (HMR) capabilities for any HTTP Server.">
<meta itemprop="name" content="svr, development HTTP server done right">
<meta itemprop="description" content="svr, development HTTP server done right">
<meta itemprop="image" content="https://svr.js.org/demo.gif">

<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="svr, Hot Module replacement (HMR) capabilities for any HTTP Server.">
<meta name="twitter:description" content="svr, Hot Module replacement (HMR) capabilities for any HTTP Server.">
<meta name="twitter:title" content="svr, development HTTP server done right">
<meta name="twitter:description" content="svr, development HTTP server done right">
<meta name="twitter:image" content="https://svr.js.org/demo.gif">

<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="svr, Hot Module replacement (HMR) capabilities for any HTTP Server.">
<meta name="og:description" content="svr, Hot Module replacement (HMR) capabilities for any HTTP Server.">
<meta name="og:title" content="svr, development HTTP server done right">
<meta name="og:description" content="svr, development HTTP server done right">
<meta name="og:image" content="https://svr.js.org/demo.gif">
<meta name="og:logo" content="https://svr.js.org/logo.png">
<meta name="og:url" content="https://svr.js.org">
<meta name="og:site_name" content="svr, Hot Module replacement (HMR) capabilities for any HTTP Server.">
<meta name="og:site_name" content="svr, development HTTP server done right">
<meta name="og:type" content="website">

<!-- Favicon -->
Expand Down

0 comments on commit a15e72f

Please sign in to comment.