Skip to main content

Command Palette

Search for a command to run...

Today's npm package: split.js

Published
1 min read
Today's npm package: split.js

Today's npm package is split.js

Layout's with adjustable width/height can be tricky to handle and may take a lot of time to get it right.

split.js is aims to solve this with very minimal JS.

Here's how to use it for the following HTML

<div>
  <aside>Menu</aside>
  <main>Content area</main>
</div>

Following would make the vertical resizable split:

const Split = require('split.js');

Split(['aside', 'main'], {
    minSize: [100, 300],
    minSize: [300, Infinity],
    direction: 'vertical'
});

Stay tuned for tomorrow's package of the Day.

More from this blog

P

Pankaj Patel - @heypankaj_

63 posts

Sharing my learnings and thoughts on Blogging, Personal Branding and Programming