1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-30 16:30:16 +02:00

Add dev server

This commit is contained in:
Kognise
2019-04-06 15:52:37 -04:00
parent 54d5cbd805
commit bfd619e330
3 changed files with 1488 additions and 21 deletions

50
dev.js Normal file
View File

@@ -0,0 +1,50 @@
const express = require('express')
const app = express()
const http = require('http').Server(app)
const io = require('socket.io')(http)
const fs = require('fs-extra')
const chokidar = require('chokidar')
const sass = require('node-sass')
const script = `
const socket = io()
socket.on('reload', () => location.reload())
`
app.get('/', async (req, res) => {
console.log('> Serving index')
const html = await fs.readFile('index.html')
const injected = html.toString().replace('</body>', `<script src='/socket.io/socket.io.js'></script><script>${script}</script></body>`)
res.send(injected)
})
app.use('/dist', (req, res, next) => {
console.log('> Serving a stylesheet')
next()
}, express.static('dist'))
function reload() {
console.log('> Reloading')
io.emit('reload')
}
chokidar.watch('index.html', { ignoreInitial: true }).on('all', () => {
console.log('> Index changed')
reload()
})
chokidar.watch('src/*.scss', { ignoreInitial: true }).on('all', async (event, file) => {
console.log('> Stylesheet changed')
sass.render({ file }, async (errors, { css }) => {
if (errors) {
console.log('> Sass errors!')
console.log(errors)
return
}
const outFile = file.replace('src', 'dist').replace('.scss', '.css')
await fs.outputFile(outFile, css)
reload()
})
})
http.listen(3000, () => console.log('> Ready at http://localhost:3000/'))

View File

@@ -5,8 +5,7 @@
"main": "index.js",
"scripts": {
"build": "node-sass src/ --output dist/",
"dev:build": "yarn build --watch",
"dev:demo": "servor"
"dev": "node dev.js"
},
"repository": {
"type": "git",
@@ -25,7 +24,10 @@
},
"homepage": "https://github.com/kognise/water.css",
"devDependencies": {
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"node-sass": "^4.11.0",
"servor": "^2.0.3"
"socket.io": "^2.2.0",
"chokidar": "^2.1.5"
}
}

1451
yarn.lock

File diff suppressed because it is too large Load Diff