Code Monkey home page Code Monkey logo

Comments (4)

kamilogorek avatar kamilogorek commented on May 30, 2024

How about moving to specific lodash modules?
Instead of requireing whole underscore, we could just require necessary functions:

var _ = {
    extend: require('lodash.extend'),
    isRegExp: require('lodash.isregexp'),
    isFunction: require('lodash.isfunction'),
    result: require('lodash.result')
};

or

var _extend = require('lodash.extend');
var _isRegExp = require('lodash.isregexp');
var _isFunction = require('lodash.isfunction');
var _result = require('lodash.result');

or even leverage something like https://github.com/lukekarrys/lodash-replacer.

from ampersand-router.

jgillich avatar jgillich commented on May 30, 2024

The advantage of a single module is that it is easier to install; Browserify does only include the used files so the the end result should be the same.

lodash-replacer looks interesting, but since it requires some effort to configure, most users probably won't use it and end up with the full underscore in their apps.

from ampersand-router.

jgillich avatar jgillich commented on May 30, 2024

lodash-cli looks really interesting, it can be used to generate a modular lodash build that puts each function in its own file and supports CommonJS.

from ampersand-router.

wraithgar avatar wraithgar commented on May 30, 2024

We will be tracking the removal of underscore here AmpersandJS/ampersand#36

from ampersand-router.

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.