GithubHelp home page GithubHelp logo

Infinite loop about dropcss HOT 4 CLOSED

leeoniya avatar leeoniya commented on May 23, 2024
Infinite loop

from dropcss.

Comments (4)

leeoniya avatar leeoniya commented on May 23, 2024 1

tried it again by grabbing the page via wget and manually extracting the #critical-styles content: padmapper-san-francisco-ca.zip. still cannot reproduce.

const fs = require('fs');
const dropcss = require('dropcss');

const html = fs.readFileSync('html.html', 'utf8');
const css = fs.readFileSync('styles.css', 'utf8');

const cleaned = dropcss({
    html,
    css
});

console.log(cleaned.css);

from dropcss.

leeoniya avatar leeoniya commented on May 23, 2024

i'm not able to reproduce this. here's what i'm doing:

const puppeteer = require('puppeteer');
const dropcss = require('dropcss');
const fs = require('fs');

(async () => {
    const browser = await puppeteer.launch();
    const page = await browser.newPage();
    await page.goto('https://www.padmapper.com/apartments/san-francisco-ca');
    const html = await page.content();
    const css = await page.$eval('#critical-styles', el => el.textContent);
    await browser.close();

    let start = +new Date();

    let clean = dropcss({
        css,
        html,
    });

    console.log(+new Date() - start);

    fs.writeFileSync('out2.css', clean.css, 'utf8');
})();

from dropcss.

heygrady avatar heygrady commented on May 23, 2024

I'll try that. thanks

from dropcss.

heygrady avatar heygrady commented on May 23, 2024

You are correct. Seems to work. Here's a variation on your same test. I will use it to verify issues in the future.

https://repl.it/@heygrady/dropcss-padmapper-test

const fetch = require('node-fetch');
const cheerio = require('cheerio')
const dropcss = require('dropcss');
const { performance, PerformanceObserver } = require('perf_hooks')

const url = 'https://www.padmapper.com/apartments/san-francisco-ca';

run = async () => {
  console.log('downloading...');
  const response = await fetch(url);
  const html = await response.text();
  const $ = cheerio.load(html);
  const css = $('#critical-styles').html();

  console.log(html.substring(0, 100), '...');
  console.log(css.substring(0, 100), '...');
  console.log('\n');
  console.log('starting...');

  performance.mark('start-dropcss')
  try {
    let clean = dropcss({
      css,
      html,
    });
    performance.mark('end-dropcss')
    console.log('worked!', css.length, '=>', clean.css.length);
  } catch (e) {
    performance.mark('end-dropcss')
    console.log(e)
  }
  performance.mark('end-dropcss')
  performance.measure('dropcss', 'start-dropcss', 'end-dropcss')
}

const obs = new PerformanceObserver((items) => {
  const measurements = items.getEntries('measure')
  measurements.forEach(({ name, duration }) => {
    console.info(`performance: ${name} in ${duration}ms`)
  })
})
obs.observe({ entryTypes: ['measure'] })

run();

from dropcss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.