We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c757a commit 99a7b47Copy full SHA for 99a7b47
app.js
@@ -3,8 +3,7 @@ var express = require('express'),
3
http = require('http'),
4
less = require('less'),
5
colors = require('colors'),
6
- logo = require('./config/logo.js'),
7
- notification = require('node-notifier');
+ logo = require('./config/logo.js');
8
9
colors.setTheme({
10
info: 'green',
@@ -43,7 +42,7 @@ server.listen(settings.port, function(){
43
42
logo.long();
44
console.log(" Express server is listening on "+" port %d ".highlight.info + " in " + " %s mode ".highlight.data, settings.port, env);
45
if (env == 'development') {
46
- var notifier = new notification();
+ notifier = new notifier();
47
notifier.notify({
48
title: pkg.name,
49
subtitle: 'v' + pkg.version,
0 commit comments