About 15,800,000 results
Open links in new tab
  1. Missing tailwind.config.js in Latest Tailwind CSS and Next.js …

    Mar 19, 2025 · I'm using the latest versions of Next.js and Tailwind CSS. I've tried manually creating a tailwind.config.js file, but I'm unsure of the correct configuration for Hero UI.

  2. Node.js version on the command line? (not the REPL)

    Feb 28, 2020 · Note: The node.js executable (binary) should be node, not nodejs. However, there was a naming conflict on some Linux distros (e.g., Ubuntu), resulting in the executable getting …

  3. node.js - Fixing npm path in Windows 8 and 10 - Stack Overflow

    I have used the cmdlet and navigate to the path you want to switch your npm files to. Type in npm root -g to see what the current path your npm is installed to. Next use npm config set prefix …

  4. Node.js cannot find installed module on Windows

    I am learning Node.js at the moment on Windows. Several modules are installed globally with npm.cmd, and Node.js failed to find the installed modules. Take Jade, for example, npm install …

  5. Parsing a string to a date in JavaScript - Stack Overflow

    How can I convert a string to a Date object in JavaScript? var st = "date in some format" var dt = new Date(); var dt_st = // st in Date format, same as dt.

  6. Remove duplicate values from a JavaScript array - Stack Overflow

    76 Use Underscore.js It's a library with a host of functions for manipulating arrays. It's the tie to go along with jQuery's tux, and Backbone.js's suspenders. _.uniq _.uniq(array, [isSorted], …

  7. Upgrading Node.js to the latest version - Stack Overflow

    26 Upgrading node.js to the latest version on Windows Install chocolatey if you haven't already: Installing Chocolatey From the command prompt, type cup nodejs (which is equivalent to …

  8. This npm install is not working on Windows - Stack Overflow

    This works great in my Mac. But the same process on Windows and the npm install crashes. This is what I get. I've tried everything I've seen on Stack Overflow so far and every link Google …

  9. Include PHP inside JavaScript (.js) files - Stack Overflow

    I have a JavaScript file (extension .js, not .html) containing several JavaScript functions. I want to call one of the PHP functions in a PHP file containing only several PHP functions from within...

  10. Calling a JavaScript function in another js file - Stack Overflow

    Separate the logic of your JS script files so that each file only contains event listeners or global, independent functions. Load the JS script files with the global, independent functions first.